以下代码调WP编辑页面宽度
/www/wwwroot/*****域名站点.cn/wp-content/themes/dameiti
将下面的代码添加到主题的 daogan123/functions.php 文件,WordPress修改functions.php教程
直接添加到最后面就行
function custom_admin_css() {
echo ‘<style type=”text/css”>
/* Main column width */
.wp-block {
max-width: 860px;
}
/* Width of “wide” blocks */
.wp-block[data-align=”wide”] {
max-width: 1080px;
}
/* Width of “full-wide” blocks */
.wp-block[data-align=”full”] {
max-width: none;
}
</style>’;
}
add_action(‘admin_head’, ‘custom_admin_css’);
_css’);
下载地址:WP-页宽代码