我正在一个主题工作,我试图总结到wordpress主题页面,但我有以下按摩:
REQUIRED:此主题似乎不显示标签。修改它以在适当的位置显示标签。
所以我发现我没有the_tags函数,但是我有自己的代码和wp_get_post_tags,因为我制作了自己的html,所以我不知道如何解决这个问题。
这是我的功能
function basico_create_link($array_object_terms, $type) {
$link = '';
foreach ($array_object_terms as $object_terms) {
$link.='<a href="';
if ($type == 'category') {
$link.=get_tag_link($object_terms->term_id);
} else if ($type == 'tag') {
$link.= get_category_link($object_terms->term_id);
}
$link.='" > ' . $object_terms->name . '</a>,';
}
return substr($link, 0, -1);
}
我用这种方式
basico_create_link(wp_get_post_tags(get_the_ID(), array('fields' => 'all')), 'tag');
答案 0 :(得分:0)
函数the_tags()应该位于The Loop中。你可以将它放在你的主题的index.php中,虽然我自己宁愿选择single.php(因为在博客中需要标签)。 因此,我启动循环,根据需要添加一些其他内容,然后我放置所需的功能,以正确显示博客帖子。一般来说,它可能是这样的:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article>
<!--some additional html/php content as needed -->
<h1><?php the_title(); ?></h1>
<p><?php the_content(); ?></p>
<?php the_category(' '); ?> || <?php the_tags(); ?>
<!--et cetera-->