个性化阅读
专注于IT技术分析

显示WordPress博客文章类别

我正在使用Wordpress主题Bridge, 这是参考。

我在网站首页上使用砌体博客简码。它目前仅显示博客标题, 摘录, 元数据和评论, 我想显示博客的类别。

下面显示了显示标题, 博客摘录, 元数据和评论的代码, 因此, 对显示博客类别的任何帮助将不胜感激。

$html .= '<div class="q_masonry_blog_post_text">';
$html .= '<'.$title_tag.' itemprop="name" class="q_masonry_blog_title
entry_title"><a itemprop="url" href="' . get_permalink() . '">' .
get_the_title() . '</a></'.$title_tag.'>';
$excerpt = ($text_length > 0) ? substr(get_the_excerpt(), 0, intval($text_length)) : get_the_excerpt();
$html .= '<p itemprop="description" 
class="q_masonry_blog_excerpt">'.$excerpt.'...</p>';
$html .= '<div class="q_masonry_blog_post_info">';
if ($display_time != "0") {
$html .= '<span itemprop="dateCreated" class="time entry_date updated">'.
get_the_time('d F, Y') .'<meta itemprop="interactionCount" 
content="UserComments: <?php echo get_comments_number(qode_get_page_id()); 
?>"/>.</span>';
}

#1


你可以使用get_the_category。

在这里你可以找到它的链接。

$categories = get_the_category();
if ( ! empty( $categories ) ) {
$html .= '<a href="' . esc_url( get_category_link( $categories[0]->term_id ) ) . '">' . esc_html( $categories[0]->name ) . '</a>'
 }
$html .= '</div>'; //closing class q_masonry_blog_post_info

#2


可以使用此代码获取帖子的类别。

<?php 
    foreach((get_the_category()) as $category){
        echo $category->name;
        }
    ?>
赞(0)
未经允许不得转载:srcmini » 显示WordPress博客文章类别

评论 抢沙发

评论前必须登录!