您好我有一个自定义帖子类型为'Researcher'的网站,其中我有一个名为'Supervisors'的分类,在其中有一个名为'Job Title'的元字段。我想弄清楚如何在前端显示这个“职称”。
元字段的代码(来自functions.php)如下:
//编辑主管分类
// Add term page
function jobtitle_taxonomy_add_new_meta_field() {
// this will add the custom meta field to the add new term page
?>
<div class="form-field">
<label for="term_meta[jobtitle]"><?php _e( 'Job Title', 'jobtitle' ); ?></label>
<input type="text" name="term_meta[jobtitle]" id="term_meta[jobtitle]" value="">
<p class="description"><?php _e( 'Enter a value for this field','jobtitle' ); ?></p>
</div>
<?php
}
add_action( 'supervisor_add_form_fields', 'jobtitle_taxonomy_add_new_meta_field', 10, 2 );
// Edit term page
function jobtitle_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[jobtitle]"><?php _e( 'Job Title', 'jobtitle' ); ?></label></th>
<td>
<input type="text" name="term_meta[jobtitle]" id="term_meta[jobtitle]" value="<?php echo esc_attr( $term_meta['jobtitle'] ) ? esc_attr( $term_meta['jobtitle'] ) : ''; ?>">
<p class="description"><?php _e( 'Enter a value for this field','jobtitle' ); ?></p>
</td>
</tr>
<?php
}
add_action( 'supervisor_edit_form_fields', 'jobtitle_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_supervisor', 'save_taxonomy_custom_meta', 10, 2 );
add_action( 'create_supervisor', 'save_taxonomy_custom_meta', 10, 2 );
//结束编辑主管分类
显示后端的图片 - http://d.pr/i/TS13
答案 0 :(得分:0)
您将需要:
single-researcher.php
页面上(如果您的帖子类型名为researcher
),您应该可以使用$ post-&gt; ID获取研究员的职位编号。...edit-tags.php?taxonomy=supervisors&...
。我假设分类法命名为supervisors
。如果您在single-researcher.php
页面上,这可能会有效......注意:$supervisor_tags
是该研究人员的一系列标签。每个研究人员可以拥有0个,1个或更多的主管,因此您可能想要遍历它们:
global $post;
$supervisor_tags = get_the_terms($post->ID, 'supervisors');
echo "<h2>Supervisors:</h2>";
foreach ($supervisor_tags as $tag){
$term_meta = get_option('taxonomy_' . $tag->term_id);
echo "<p>Name: " . $tag->name . " - Job Title: " . $term_meta['jobtitle'] . "</p>";
}
如果您遇到问题,可以echo "<pre>"; print_r($variable); echo "</pre>";
查看$variable
数组的内容。