使用Elementor Wordpress页面构建器时,我遇到了一个奇怪的问题。
创建自定义短代码并将其插入任何页面位置后,它也会显示在页面顶部,但仅在编辑模式下显示。
页面顶部:
我想插入短代码的地方:
答案 0 :(得分:2)
这个不相关网站上的答案帮助我解决了这个Elementor问题。 https://wp-types.com/forums/topic/shortcode-output-showing-up-in-the-wrong-place/
我必须在我的函数中加入ob_start();
和$content = ob_get_clean(); return $content;
。这是它的样子:
function custom_author_link_function() {
ob_start();
coauthors_posts_links();
$content = ob_get_clean();
return $content;
}
add_shortcode('custom_author_link', 'custom_author_link_function');