PHP 使用CSS样式WordPress编辑器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 使用CSS样式WordPress编辑器相关的知识,希望对你有一定的参考价值。

add_filter('mce_css', 'my_editor_style');
function my_editor_style($url) {
  if ( !empty($url) )
    $url .= ',';
  // Change the path here if using sub-directory
  $url .= trailingslashit( get_stylesheet_directory_uri() ) . 'editor-style.css';

  return $url;
}

以上是关于PHP 使用CSS样式WordPress编辑器的主要内容,如果未能解决你的问题,请参考以下文章

如何在WordPress page.php,single.php中加载style.css根目录

WordPress中的主题编辑器样式表文件编辑器错误

css WordPress编辑器的常规样式

css WordPress编辑器样式

php Wordpress管理样式 - 将自定义CSS应用于管理区域

PHP Wordpress - 将您的样式流入编辑器