複数のフィールドが含まれるカスタム投稿タイプがある場合、プラグイン内で特定のフィールドの出力を使用したい場合があります。カスタム投稿タイプの場合、単に<?php the_field('paragraph_1'); ?>
コンテンツを表示するために使用します。プラグインでは、これは機能しません。カスタム投稿タイプに関しては何も出力されません。これはどのように達成できますか?
functions.php で:
// Add custom taxonomy for post_type=portfolio
function create_portfolio_taxonomies()
{
// Add new taxonomy, make it hierarchical (like categories)
$labels = array(
'name' => _x( 'Portfolio Categories', 'taxonomy general name' ),
'singular_name' => _x( 'Category', 'taxonomy singular name' ),
'search_items' => __( 'Search Categories' ),
'all_items' => __( 'All Categories' ),
'parent_item' => __( 'Parent Category' ),
'parent_item_colon' => __( 'Parent Category:' ),
'edit_item' => __( 'Edit Category' ),
'update_item' => __( 'Update Category' ),
'add_new_item' => __( 'Add New Category' ),
'new_item_name' => __( 'New Genre Category' ),
'menu_name' => __( 'Category' ),
);
register_taxonomy('work-category',array('portfolio'), array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'work-category' ),
));
}
//hook into the init action and call create_book_taxonomies when it fires
add_action( 'init', 'create_portfolio_taxonomies', 0 );