在编辑POST_LINK中获取标题

时间:2013-07-04 作者:Mitch

基本上,我想链接到Wordpress中的编辑帖子界面,显示的字符串是帖子标题。我尝试了我能想到的任何语法,但我也只学了2天php。

这是我想到的。它创建一个链接,但不显示文章标题。

<a href=<?php edit_post_link(\'<?php echo get_the_title($ID);?>\'); ?> </a>
http://codex.wordpress.org/Function_Reference/edit_post_link http://codex.wordpress.org/Function_Reference/get_the_title

1 个回复
SO网友:diggy

edit_post_link 不应用作href属性。请尝试以下操作:

<?php edit_post_link( get_the_title( get_the_ID() ) ); ?>

结束