我已经设法改变了WordPress block editor 因此,它使用了我实际主题的最大宽度,使得在写作过程中更容易进行布局。现在我想把它改成only 编辑时发生pages, 不发布或其他分类法。
我该怎么做?
My current procedure is:
将这些行添加到我的主题functions.php 文件:add_theme_support( \'editor-styles\' );
add_editor_style( \'style-editor.css\' );
然后将此css添加到我的style-editor.css 文件:@media (min-width: 600px) {
/* Main column width */
.wp-block { width: 90%; max-width: 1170px; }
/* Width of "wide" blocks */
.wp-block[data-align="wide"] { max-width: 1170px; }
/* Width of "full-wide" blocks */
.wp-block[data-align="full"] { max-width: none; }
}
到目前为止,块编辑器显示了新的宽度,但当我添加过滤器以仅在页面上显示时,我假设is_page
, 它不工作,我最终得到了正常的wp编辑器宽度。以下是中的代码functions.php:if ( is_page() ) {
add_theme_support( \'editor-styles\' );
add_editor_style( \'style-editor.css\' );
}
我想我的问题是,我使用的是前端is\\U页面挂钩,但我找不到与之等效的wp编辑器。正确的代码是什么?