我正在研究wordpress主题并试图设计我的博客页面。每个博客的标题都没有链接到相应的完整个人博客帖子。有人可以告诉我该怎么做?我对wordpress很新,不知道从哪里开始!
答案 0 :(得分:1)
看起来你正在寻找<?php the_permalink() ?>
,这是一个意味着在Wordpress循环中使用的PHP块。
Wordpress Codex for the Permalink Function
在那里解释了用法,但基本上,如果你在循环中(也就是说,你正在迭代你的帖子而Wordpress用PHP将它们吐出来)你就可以做这样的事情
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
显然我有点生疏,我不确定the_title()
语法是否正确,但这一切背后的想法是你想要使用PHP的这些小片段,以便更好地呈现你的帖子。
希望能让你开始走上正轨!
编辑:但是,如果你没有使用循环,则有一个等效函数get_permalink()
found here
值得注意的是,它不显示链接,因此您必须使用echo
才能输出the_permalink();
的返回值,这是获取永久链接,如果你不是looping through your posts and outputting them。
答案 1 :(得分:0)
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
查看代码,完全按照html和php进行操作。你也可以看到wordpress示例主题。你可能只是这样做:
<h1><?php the_title(); ?></h1>
如果您粘贴代码,我们可以确切地说出问题所在。