我正在使用这段代码将表单添加到Wordpress分类中:
function albums_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[custom_term_meta]"><?php _e( 'Example meta field', 'albums' ); ?></label>
<input type="text" name="term_meta[custom_term_meta]" id="term_meta[custom_term_meta]" value="">
<p class="description"><?php _e( 'Enter a value for this field','albums' ); ?></p>
</div>
<?php
}
add_action( 'albums_add_form_fields', 'albums_taxonomy_add_new_meta_field', 10, 2 );
价值保存得很好。但是,如何在模板上输出表单中填写的用户值?在前端使用这个值的php函数是什么?
感谢。
答案 0 :(得分:1)
只是猜测,在重定向表单的页面上尝试:
echo $_POST['term_meta']['custom_term_meta']