阅读wordpress中的更多链接

时间:2014-12-05 20:12:11

标签: html wordpress hyperlink

我一直试图在我的头版中更改一些阅读更多按钮

enter image description here

我已缩小此HTML文字。

printf('<p>%s</p>', get_the_excerpt($post->ID));
      printf('<a href="%s" class="button">Read more</a>', post_permalink($post->ID));

我想知道如何阅读更多按钮/链接没有网址? Post ID的含义是什么?

3 个答案:

答案 0 :(得分:3)

有关Wordpress variables here治疗的良好信息。在您的情况下,%s是printf中的字符串变量,由函数get_the_excerpt()和post_permalink()

生成

这两个功能都使用帖子的ID(帖子ID)来检索要打印的结果。

答案 1 :(得分:2)

从代码的第一行开始%s =帖子ID。

帖子ID是从您的一个wordpress博客帖子中获取ID。看起来您的模板与博客文章系统相关联。我猜它是从已经设置的最新或特色帖子中提取的。这取决于您的模板/主题。

答案 2 :(得分:2)

网址是post_permalink($post->ID) post id的post_permalink。 在下文中,%s代表帖子的网址。

printf('<a href="%s" class="button">Read more</a>', post_permalink($post->ID));