gpt4 book ai didi

wordpress - Elementor 页面构建器简码问题

转载 作者:行者123 更新时间:2023-12-03 07:43:47 25 4
gpt4 key购买 nike

我在使用 Elementor Wordpress 页面生成器时遇到了一个奇怪的问题。

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

页面顶部:

Top of the page

我要插入短代码的位置:

place where i want to insert shortcode

最佳答案

这个不相关网站上的答案帮助我解决了这个 Elementor 问题。 https://wp-types.com/forums/topic/shortcode-output-showing-up-in-the-wrong-place/

我只需要包含 ob_start();$content = ob_get_clean();在我的函数中返回 $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');

关于wordpress - Elementor 页面构建器简码问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46284324/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com