gpt4 book ai didi

wordpress - 在 wordpress-3.5.2 的自定义分类元框中添加自定义字段

转载 作者:行者123 更新时间:2023-12-01 00:30:21 25 4
gpt4 key购买 nike

无法在 wordpress-3.5.2 的自定义分类元框中添加自定义字段。

我在各种博客中查看了解决方案,但无法解决这个问题。我正在使用 wordpress-3.5.2

我正在尝试的是:-

// A callback function to add a custom field to our "adtag" taxonomy
add_action( 'adtag_edit_form_fields', 'adtag_callback_function', 10, 2);

// A callback function to save our extra taxonomy field(s)
add_action( 'edited_adtag', 'save_taxonomy_custom_fields', 10, 2 );

我尝试了以下链接的解决方案:-

http://www.codehooligans.com/2010/07/07/custom-meta-for-new-taxonomies-in-wordpress-3-0/ http://sabramedia.com/blog/how-to-add-custom-fields-to-custom-taxonomies

http://www.wpbeginner.com/wp-tutorials/how-to-add-additional-custom-meta-fields-to-custom-taxonomies/

http://shibashake.com/wordpress-theme/add-term-or-taxonomy-meta-data

最佳答案

看看为向分类法添加额外字段而开发的税收元类:WordPress Taxonomies Extra Fields the easy way

1) 包含主类文件

require_once("Tax-meta-class/Tax-meta-class.php");

2) 配置分类自定义字段

$config = array(
'id' => 'demo_meta_box',
'title' => 'Demo Meta Box',
'pages' => array('category'),
'context' => 'normal',
'fields' => array(),
'local_images' => false,
'use_with_theme' => false
);

3) 启动您的分类自定义字段

$my_meta = new Tax_Meta_Class($config);

4) 添加字段

//text field
$my_meta->addText('text_field_id',array('name'=> 'My Text '));
//textarea field
$my_meta->addTextarea('textarea_field_id',array('name'=> 'My Textarea '));

5) Finish Taxonomy Extra fields Deceleration [重要!]

$my_meta->Finish();

6) 获取保存的数据

$saved_data = get_tax_meta($term_id,'text_field_id');
echo $saved_data;

关于wordpress - 在 wordpress-3.5.2 的自定义分类元框中添加自定义字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19021162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com