php 【WordPress的】テンプレートのURL(とタイトル)を(だいたい)一発で取得するタグ

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 【WordPress的】テンプレートのURL(とタイトル)を(だいたい)一発で取得するタグ相关的知识,希望对你有一定的参考价值。

// カスタム投稿タイプのアーカイブ一覧ページ

$archive_url = get_post_type_archive_link( $post_type );

$archive_slug = get_post_type( $post );

$storeblog_obj = get_post_type_object( $archive_slug );
$archive_title = $storeblog_obj -> label;


// タクソノミー一覧ページ

$tax_url = get_term_link( $term_slug, $taxonomy_slug );

$tax_archive_title = single_term_title( '', false );


// 投稿のカテゴリー一覧ページ

$category_id = get_cat_ID( $category_name );
$category_link = get_category_link( $category_id );

$category_archive_title = single_cat_title( '', false );


// 投稿のタグ一覧ページ

$tag_id = get_term_by( 'slug', $tag_slug, 'post_tag' );
$tag_link = get_tag_link( $tag -> term_id );

$tag_archive_title = single_tag_title( '', false );


// 月別アーカイブ一覧ページ

$monthnum_archive_url = get_month_link( $year, $month );;


// シングルページのタイトル

$post_title = single_post_title( '', false );

以上是关于php 【WordPress的】テンプレートのURL(とタイトル)を(だいたい)一発で取得するタグ的主要内容,如果未能解决你的问题,请参考以下文章

php テンプレート

php Zend公司 - 分页程序のテンプレート

html プライバシー·ポリシーのテンプレ

html 引导の导航栏テンプレート

text VuePressコンポーネントテンプレ

json Firebase Cloud Funtionsテンプレート