因此插件使用的css实际上被称为demo.css
- see file. (我知道,一开始我从来没有抽出时间来称它为更合适的东西)。然而,插件需要更多的css来修饰:例如,设置预览框、工具栏等的样式,所以只需替换演示的内容即可。带有美化主题的css不起作用。
但在里面demo.css
有two lines 其中包含压缩的美化主题。你应该可以用任何你想要的主题来代替它。。。
但是,决不能直接编辑插件文件。虽然在这种情况下不太可能,但这样做可能会产生意想不到的后果。但更重要的是,您的更改在更新时丢失。
因此,这里有一种更好的方法来替换插件的css文件。
将css文件复制到主题中(重命名它wp-markdown.css
, 说——因为这很有道理)对主题中的副本进行任何更改。
取消注册默认CSS并重新注册您自己的副本
代码:
add_action( \'wp_enqueue_scripts\', \'wpse82441_wpmarkdown_replacement_style\', 20 );
function wpse82441_wpmarkdown_replacement_style(){
wp_deregister_style( \'md_style\' ); //Deregister the style
wp_enqueue_script(
\'md_style\', //Re-register the style
get_template_directory_uri() . \'/wp-markdown.css\', //Point to the copy in your theme
);
}