表示したい所に↓を挿入。例)カテゴリのIDが5の場合、()内にカテゴリIDを記入
1 |
<?php echo $cat_name = get_the_category_by_ID( 5 ); ?> |
リンクを付けたい場合↓
1 2 |
<a href="<?php echo get_category_link( 5 );?>"> <?php echo $cat_name = get_the_category_by_ID( 5 ); ?></a> |
指定した投稿ページまたは、固定ページのタイトルを取得
表示したい所に↓を挿入。
1 2 3 4 5 |
<?php $page_id = 554; // ページIDを指定 $content = get_page($page_id); echo $content -> post_title; ?> |
コメントを残す