wordpressのタグ、記事一覧でterm_idを取得する方法

使用できるURL

http://サーバーネーム/tag/登録されているタグ名
のページの時に使用できます。
localだと
http://localhost/サイトフォルダ名/tag/登録されているタグ名
localとはxamppのことを言っています。
※wordpressの設定によりurlは異なります。

コードの紹介

下記のコードをfunctions.phpに記述します。

/*
 * カテゴリー又はタグの記事一覧ページでのterm_idの取得
*/
function get_tag_id() {
	$term = get_queried_object();

	if ( !$term ){
		return;
	}

	$term_id = $term->term_id;

	if ( empty( $term_id ) ){
		return;
	}

	return $term_id;
}

下記のコードをtag.php又はarchive.phpに記述します。

$term_id = get_tag_id();

シェアする

  • このエントリーをはてなブックマークに追加

フォローする