2017-10-31 32 views
1

私は、日付、ポストauthoとカテゴリを表示することができますが、私はカテゴリーを表示することはできませんPHPのための簡単なコードを記述しようとします。どこに追加できますか?これはコードです:あなたが投稿のカテゴリを表示するには、get_the_category()関数を使用することができます投稿のカテゴリを取得、

$posted_on = sprintf(
    esc_html_x('Posted on111 %s', 'post date', 'sanse'), 
    '<a href="' . esc_url(get_permalink()) . '" rel="bookmark">' . $time_string . '</a>' 
); 

$byline = sprintf(
    esc_html_x('by %s', 'post author', 'sanse'), 
    '<span class="author vcard"><a class="url fn n" href="' . esc_url(get_author_posts_url(get_the_author_meta('ID'))) . '">' . esc_html(get_the_author()) . '</a></span>' 
); 

答えて

関連する問題