9

我在使用 Elementor Wordpress Page Builder 时遇到了一个奇怪的问题。

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

页面顶部:

页面顶部

我要插入简码的地方:

我要插入简码的地方

4

1 回答 1

10

这个无关网站上的答案帮助我解决了这个 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');
于 2018-02-15T18:19:36.523 回答