如何将元字段添加到自定义分类添加/编辑页面?

时间:2015-09-08 作者:nisr

我有一个自定义分类“问题”。我尝试使用Ohad Raz解释的方法向仪表板中的添加/编辑问题页面添加一些元字段(https://en.bainternet.info/wordpress-taxonomies-extra-fields-the-easy-way/).所以我从github下载了这些文件(https://github.com/bainternet/Tax-Meta-Class), 把它们放在child theme folder &;将这些行添加到child theme functions.php:

require_once( get_stylesheet_directory() . \'/Tax-meta-class/Tax-meta-class.php\' );

$config = array(
   \'id\' => \'demo_meta_box\',
   \'title\' => \'Demo Meta Box\',
   \'pages\' => array(\'issue\'),
   \'context\' => \'normal\',
   \'fields\' => array(),
   \'local_images\' => false,
   \'use_with_theme\' => false
);
$my_meta = new Tax_Meta_Class($config);
$my_meta->addText(\'text_field_id\',array(\'name\'=> \'My Text \'));
$my_meta->addTextarea(\'textarea_field_id\',array(\'name\'=> \'My Textarea \'));
$my_meta->addDate(\'date_field_id\',array(\'name\'=> \'My Date \'));
$my_meta->addImage(\'image_field_id\',array(\'name\'=> \'My Image \'));
$my_meta->addFile(\'file_field_id\',array(\'name\'=> \'My File \'));
$my_meta->Finish();
因此,现在所有字段都添加到添加/编辑分类仪表板页面。但是,没有css样式。虽然tax meta class文件夹/css中有一个css文件,但添加到仪表板的字段没有样式,甚至添加图像/添加文件按钮都不会打开,日期选择器显示为普通文本字段。我不知道如何在这些创建的字段上应用css代码。你能帮帮我吗?

1 个回复
SO网友:nisr

查看代码后,更多(&M);我找到了更多的解决方案。因此,对于那些对这种事情感兴趣的人来说:

在中将false更改为trueuse_with_themetax-meta-class.php干杯

相关推荐

通过主题定制器编辑style.css

直到现在,在我的Wordpress主题中,我在主题定制器中实现了一些必要的样式选项,这些选项将编辑CSS并通过将CSS输出到头部内部来覆盖它<style> 标记,例如,这里我实现了颜色选择器,如果默认状态发生更改,我会输出样式:function dc_get_gradient_colors() { $first_color = get_theme_mod( \'primary_color_1\' ); if ( $link_color != \'#0