我使用這段代碼的形式添加到WordPress的分類:PHP函數輸出表單值?
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函數?
謝謝。
回聲功能只是基本的PHP的東西,學習一些PHP – 2012-01-12 17:14:09