我已经在网上查看了有关如何为插件创建自定义CSS文本字段的教程或代码。如果有人能提供帮助,真的很感激。谢谢!
答案 0 :(得分:1)
好的兄弟可以这样做
在插件主文件中,您必须注册css字段的设置
<强>像:强>
register_setting('settings-group', 'css_field');
然后在您创建设置表单(e.g. setting.php)
<textarea cols="50" rows="20" name="css_field" id="css_field" tabindex="1"><?php echo get_option('css_field') ?></textarea>
然后在get_header();
<style type="text/css">
<?php echo get_option('css_field'); ?>
</style>
或者您可以在插件主文件中添加标题,例如:
function wp_css_custome(){
?>
<style type="text/css">
<?php echo get_option('css_field'); ?>
</style>
<?php
}
add_action('wp_head','wp_css_custome');
希望这会对你有所帮助:)。
答案 1 :(得分:0)
这取决于您尝试放置自定义CSS框的位置。
更多信息可以帮助我更好地回答这个问题。