请检查您在内容中添加的短代码是否正确,检查是否遗漏了其中的任何内容。
如果您的短代码正常,那么帖子内容似乎是按原样加载的,没有应用短代码。因此,您需要对内容应用do\\u shortcode()函数。
请在主题函数中添加以下代码。php文件。
add_filter( \'the_content\', \'apply_short_code\' );
function apply_short_code( $content ) {
if ( is_single() && in_the_loop() && is_main_query() ) { // add this condition if you want to apply this for selected pages only.
return do_shortcode($content) .
}
return $content;
}
如果在自定义字段(默认内容部分除外)中添加了快捷码,则需要应用
do_shortcode
函数,然后再打印该字段的值。
希望这对你有帮助。