我为我的主题创建了一个选项页面,在这里我可以手动编辑CSS
假设我在选项页面中更改<H1>
标记,因此它现在将在前端更改它
我还想在可视化编辑器中更改它。
我已经添加了函数
add_editor_style(style.php);
在
style.php
我在上面写着
<?php
header(\'Content-type: text/css\');
?>
因此它可以识别文件。但现在我无法动态获取选项。。。
我应该如何做到这一点?
编辑
这在函数中。
add_filter( \'mce_css\', \'cnote_visual_css\' );
function cnote_visual_css() {
return get_bloginfo(\'template_directory\') . \'/cnotethegr8/global-style.php\';
}
这是全局样式表
<?php
header(\'Content-type: text/css\');
global $shortname;
?>
h1 { <?php echo(get_option($shortname.\'_style_h1\')); ?> }
当我回显$shortname时,没有显示任何内容。。。