カスタム投稿タイプの投稿をタグに基づいてグループ化したいのですが、現在作業中のプロジェクトではデフォルトの機能は使用できません。
カスタム投稿タイプ(ドロップダウンまたはラジオボタン)に入力されたすべてのタグのリストから、複数のタグではなく、1つのタグのみをユーザーが選択できるようにします。
ユーザーは、カスタム分類を追加するためにページから必要な数のタグを作成できます。これらのタグはすべて、単一のカスタム投稿ページのメタボックスに表示されます。
なにか提案を?
私の最後のプロジェクトで私は同じ問題を抱えていました、そして私はちょうどこれを使いました:
まず、get_categories関数を使って、次のように正しい分類法を渡してタグのリストをvarに取得します。
$args = array(
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 0,
'taxonomy' => 'post_tag'
);
$categories=get_categories($args);
foreach($categories as $category) {
$tags[] = $category->name ;
}
次にメタボックスの引数を作成します
$prefix = 'CPT_my_meta';
$meta_box = array(
'id' => 'custom-meta-box',
'title' => 'tags',
'page' => 'CPT name',
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'name' => 'tags',
'desc' => 'select a tag',
'id' => $prefix . 'name',
'type' => 'select',
'options' => $tags
)))
それからメタボックスを追加します
add_action('admin_menu', 'add_my_box');
// Add meta box
function add_my_box() {
global $meta_box;
add_meta_box($meta_box['id'], $meta_box['title'], 'metabox_callback', $meta_box['page'], $meta_box['context'], $meta_box['priority']);
}
メタボックスを表示する関数を作成するだけです。
//show meta box
function metabox_callback(){
global $meta_box, $post;
// Use nonce for verification
echo '<input type="hidden" name="META_BOX_NONEC" value="', wp_create_nonce(basename(__FILE__)), '" />';
echo '<table class="form-table">';
foreach ($meta_box['fields'] as $field) {
// get current post meta data
$meta = get_post_meta($post->ID, $field['id'], true);
echo '<tr>',
'<th style="width:20%"><label for="', $field['id'], '">', $field['name'], '</label></th>',
'<td>';
switch ($field['type']) {
case 'select':
echo '<select name="', $field['id'], '" id="', $field['id'], '">';
foreach ($field['options'] as $option) {
echo '<option', $meta == $option ? ' selected="selected"' : '', '>', $option, '</option>';
}
echo '</select>';
break;
}
echo '</td></tr>';
}
echo '</table>';
}
そしてポストセーブに保存する
//hook save function
add_action('save_post', 'save_my_meta_box');
// Save data from meta box
function save_my_meta_box($post_id) {
global $meta_box;
// verify nonce
if (!wp_verify_nonce($_POST['META_BOX_NONEC'], basename(__FILE__))) {
return $post_id;
}
// check autosave
if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
return $post_id;
}
// check permissions
if ('page' == $_POST['post_type']) {
if (!current_user_can('edit_page', $post_id)) {
return $post_id;
}
} elseif (!current_user_can('edit_post', $post_id)) {
return $post_id;
}
foreach ($meta_box['fields'] as $field) {
$old = get_post_meta($post_id, $field['id'], true);
$new = $_POST[$field['id']];
if ($new && $new != $old) {
update_post_meta($post_id, $field['id'], $new);
} elseif ('' == $new && $old) {
delete_post_meta($post_id, $field['id'], $old);
}
}
}
お役に立てれば
リストを表示しようとしましたが、post_tag
またはcategory
を使用しても機能しますが、デフォルトの投稿タイプタグまたはカテゴリのリストが表示されます。
カスタム投稿のカスタム分類法のリストが欲しいのですが。私のカスタム投稿の種類は "au-gallery"、私のカスタム分類法は "gallery"です。
$args = array( 'type' => 'au-gallery', 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => 0, 'taxonomy' => 'gallery' );
しかし、私は空のリストしか得られませんでした。
私はget_the_term_list
とget_the_terms
を見ていましたが、それらの関数は投稿IDを必要とします。
カスタム分類については、私はsave_post
フックを書かずに解決策を見つけました。分類法を登録するときは、'meta_box_cb' => 'single_taxonomy_select_meta_box'
を指定する必要があります
詳細はこちらの要旨をダウンロード してください
/**
* Meta box to select only one taxonomy value
*
* @param WP_Post $post
* @param array $box
*/
function single_taxonomy_select_meta_box( WP_Post $post, Array $box ) {
$taxonomy = $box['args']['taxonomy'];
$term_name_of_the_current_post = wp_get_object_terms( $post->ID, $taxonomy, [ 'fields' => 'names' ] )[0];
$all_term_names = get_terms( $taxonomy, [ 'fields' => 'names', 'hide_empty' => false ] );
?>
<label>
<?php esc_html_e( 'Please choose:' ); ?>
<select name="tax_input[<?php echo esc_attr( $taxonomy ); ?>]">
<?php foreach ( $all_term_names as $term_name ) : ?>
<option <?php selected( $term_name_of_the_current_post, $term_name ); ?>>
<?php echo esc_html( $term_name ); ?>
</option>
<?php endforeach; ?>
</select>
</label>