比如说,我有一篇标题为“虚拟一号”的帖子,该帖子被归入“一类”,我还有其他帖子,如:“虚拟二号,虚拟树等”,以及第二类,第三类等。
现在我创建了另一篇标题为“一类助手”的帖子,如何在所有标题为“一类助手”的帖子中显示永久链接到“一类助手”
我想把它放在下面the_content();
在里面single.php
.
让我们说我的single.php
是这样的
if( have_post()):
while( blah blah ):
the_content();
endwhile;
endif;
我想喜欢这个。
if():
while():
the_content();
if(category == "category one"):
display_helper_for_category_one
else:
display_nothink
endif;
endwhile;
endif;
我该怎么做?
最合适的回答,由SO网友:shahpranaf 整理而成
是的,你可以做到。您可以使用get\\u category\\u链接。
if():
while():
the_content();
if(category == "category one"){
// Get the ID of a given category
$category_id = get_cat_ID( \'helper for category one\' ); //get_cat_ID(\'category_name\');
// Get the URL of this category
$category_link = get_category_link( $category_id );
// Print category link here
}
else{
display_nothink
}
endif;
endwhile;
endif;
如果您无法直接访问single,也可以使用action/filter。php文件