0

当我在页面上使用简码时效果很好,但在帖子上只显示简码名称。示例简码:

function foobar_func( $atts ){
    return "foo and bar";
}
add_shortcode( 'foobar', 'foobar_func' );

用法:

[foobar]

在页面上显示

foo and bar

但仅在帖子上

[foobar]

我尝试了像 TwentySeventenn 这样的基本主题,但问题仍然存在。

4

1 回答 1

1

这很奇怪。所以你在 TwentySeventenn 主题的 functions.php 中添加了上面的代码,但它在 post 上不起作用?请仔细检查您在帖子内容文件上正确写入 [foobar]。或者,如果您更改了主题的某些内容,请检查您使用的是 the_content() 而不是 echo get_the_content(); 如果您使用 get_the_content(),则短代码不起作用;

于 2018-12-16T08:09:36.613 回答