Wordpress Document

Author tags

Category tags

Comment tags

Date and Time tags

General tags

Geo tags

Link tags

Links Manager tags

Permalink tags

Post tags

Trackback tags

WP/PHP General

edit_post_link

概要

現在表示中の投稿ページの編集画面へのリンクを表示します。
ユーザーがログインしていて、そのページの編集を許可されていなければなりません。
このタグはThe_Loopの中で使用しなければなりません。

用法

<?php edit_post_link('link', 'before', 'after'); ?>

引数

link (string)

リンクラベル(デフォルト:'Edit This')

before (string)

ラベルの前に表示されるテキスト(デフォルト:なし)

after (string)

ラベルの後に表示されるテキスト(デフォルト:なし)

用例

<?php edit_post_link('edit', '<p>', '</p>'); ?>