wordpress gutenberg alignwide 和 alignfull 问题

wordpress gutenberg alignwide and alignfull problem

我正在玩 wordpress 的新 gutenberg 编辑器。我在我的主题(使用物化)上启用了 alignwide 和 alignfull,并且我为它们使用了这些 css 规则,但它不能正常工作。

这就是 alignwide 的样子。

这就是完整对齐的样子。

这些是 css 中的 alignfull 和 wide 规则:

这就是完全对齐 css 的方式:

这些是包装内容 css 的规则 div:

知道为什么我没有得到正确的视觉结果吗?

首先,只需对主题的 functions.php 文件使用 add_theme_support( 'align-wide' ) 函数,附加到 after_setup_theme 钩子,在主题加载后触发:

<?php
/**
 * Registers support for Gutenberg wide images in Writy.
 */
function writy_setup() {
  add_theme_support( 'align-wide' );
}
add_action( 'after_setup_theme', 'writy_setup' );

Note that theme support for wide images was changed from being within the Gutenberg theme support array, with a wide-images bool, to the above.