This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
*Add meta box to the term category page. | |
*/ | |
function dtbaker_taxonomy_edit_meta_field( $term ) { | |
// Retrieve the existing value(s) for this meta field. | |
$term_meta = $term && !empty($term->term_id) ? get_term_meta( $term->term_id, 'custom_page_id', true ) : false; | |
?> | |
<tr class="form-field"> |