web-dev-qa-db-ja.com

分類用語メタを表示するための条件付き作成

分類学用語用に追加のメタフィールドを表示しようとしています。メタフィールドが空の場合は、デフォルト値を表示します。

これが、分類メタフィールドを作成するためのコードです。

// Add phone number to location taxonomies
function nwtd_lpfs_taxonomy_add_new_meta_field() {
    ?>
    <div class="form-field">
        <label for="term_meta[phone]"><?php _e( 'Location Based Phone Number', 'nwtd' ); ?></label>
        <input type="text" name="term_meta[phone]" id="term_meta[phone]" value="">
        <p class="description"><?php _e( 'Enter a phone number for this location','nwtd' ); ?></p>
    </div>
<?php
}
add_action( 'locations_add_form_fields', 'nwtd_lpfs_taxonomy_add_new_meta_field', 10, 2 );

// Edit term page
function nwtd_lpfs_taxonomy_edit_meta_field($term) {

    // put the term ID into a variable
    $t_id = $term->term_id;

    // retrieve the existing value(s) for this meta field. This returns an array
    $term_meta = get_option( "taxonomy_$t_id" ); ?>
    <tr class="form-field">
    <th scope="row" valign="top"><label for="term_meta[phone]"><?php _e( 'Location Based Phone Number', 'nwtd' ); ?></label></th>
        <td>
            <input type="text" name="term_meta[phone]" id="term_meta[phone]" value="<?php echo esc_attr( $term_meta['phone'] ) ? esc_attr( $term_meta['phone'] ) : ''; ?>">
            <p class="description"><?php _e( 'Enter a phone number for this location','nwtd' ); ?></p>
        </td>
    </tr>
<?php
}
add_action( 'locations_edit_form_fields', 'nwtd_lpfs_taxonomy_edit_meta_field', 10, 2 );

// Save extra taxonomy fields callback function.
function save_taxonomy_custom_meta( $term_id ) {
    if ( isset( $_POST['term_meta'] ) ) {
        $t_id = $term_id;
        $term_meta = get_option( "taxonomy_$t_id" );
        $cat_keys = array_keys( $_POST['term_meta'] );
        foreach ( $cat_keys as $key ) {
            if ( isset ( $_POST['term_meta'][$key] ) ) {
                $term_meta[$key] = $_POST['term_meta'][$key];
            }
        }
        // Save the option array.
        update_option( "taxonomy_$t_id", $term_meta );
    }
}  
add_action( 'edited_locations', 'save_taxonomy_custom_meta', 10, 2 );  
add_action( 'create_locations', 'save_taxonomy_custom_meta', 10, 2 );

テンプレートで使用しようとしている条件は、次のとおりです。

<?php if( $term_meta['phone'] != "" ) {             
     echo $term_meta['phone'];                                      } else {                                
    echo '(555) 555-555';                                       }?>

何かご意見は? TIA

1
NW Tech

追加の 分類メタクラスを追加しました

それから私は私の電話番号を得るために次のものを使うことができました:

<?php               
                    //Get the correct taxonomy ID by slug
                    $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );

                    //Get Taxonomy Meta
                    $saved_data = get_tax_meta($term->term_id,'loc_phone');
                ?>
                <?php if( $saved_data != "" ) {

                    echo $saved_data; 

                } else {

                    echo '(555) 555-555'; 

                }?>
0
NW Tech