元素页面构建器短代码问题

时间:2017-09-18 16:40:26

标签: wordpress shortcode elementor

使用Elementor Wordpress页面构建器时,我遇到了一个奇怪的问题。

创建自定义短代码并将其插入任何页面位置后,它也会显示在页面顶部,但仅在编辑模式下显示。

页面顶部:

Top of the page

我想插入短代码的地方:

place where i want to insert shortcode

1 个答案:

答案 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');