【发布时间】:2018-08-16 06:25:20
【问题描述】:
我已打开 Gutenberg 并尝试在页面上创建简码。这是我在functions.php中的代码
// Enable shortcodes in text areas
add_filter( 'widget_text', 'shortcode_unautop');
add_filter( 'widget_text', 'do_shortcode');
// Enable shortcodes
add_filter( 'the_excerpt', 'shortcode_unautop');
add_filter( 'the_excerpt', 'do_shortcode');
function first_shortcode() {
$content = '<h1>This is my first shortcode</h1>';
return $content;
}
add_action('my_shortcode','first_shortcode');
在帖子中,我将 [my_shortcode] 放在简码部分,如下:
但是当我显示页面时,它只会呈现 [my_shortcode]。我正在运行 Wordpress 4.9.8
谢谢
【问题讨论】:
标签: wordpress shortcode wordpress-gutenberg