阅读更多博客列表页面的链接

时间:2013-06-30 作者:Vinnie James

我有一个博客页面设置来列出帖子。“阅读更多”链接由以下内容添加

 <?php
  global $more;
  $more = 0; 

  the_content(\'<a href="#" class="button">Read More</a>\'); ?>
如何在“#”所在的位置添加\\u permalink而不破坏php?

1 个回复
SO网友:s_ha_dum

使用get_permalink. 否则这基本上是PHP string concatenation question.

the_content(\'<a href="\'.get_permalink().\'" class="button">Read More</a>\');

结束

相关推荐