嘿, 你们为这个愚蠢的问题感到非常抱歉, 因为我是wordpress的新手。我只想显示用户推荐。
为此, 我安装了Easy Testimonials插件。然后, 我创建一个名为”
推荐”
的新页面。在那我给下面的简码
[testimonials theme="default_style" paginate="all" count="5" orderby="date" order="ASC" show_title="0" use_excerpt="0" show_thumbs="1" show_date="1" show_other="1" hide_view_more="1" output_schema_markup="1" show_rating="stars"]
到目前为止, 一切工作正常, 但是在我的网站上显示了我在推荐页面中给出的短代码。
文章图片
我的管理面板
文章图片
【推荐短代码也显示在我的网站上吗(如何避免这个问题)】这是我的page.php
<
?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages and that other
* 'pages' on your WordPress site will use a different template.
*
* @package OceanWP WordPress theme
*/get_header();
?>
<
?php do_action( 'ocean_before_content_wrap' );
?>
<
div id="content-wrap" class="container clr">
<
?php do_action( 'ocean_before_primary' );
?>
<
div id="primary" class="content-area clr">
<
?php do_action( 'ocean_before_content' );
?>
<
div id="content" class="site-content clr">
<
?php do_action( 'ocean_before_content_inner' );
?>
<
?php
// Elementor `single` location
if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'single' ) ) {// Start loop
while ( have_posts() ) : the_post();
get_template_part( 'partials/page/layout' );
endwhile;
} ?>
<
?php do_action( 'ocean_after_content_inner' );
?>
<
/div>
<
!-- #content -->
<
?php do_action( 'ocean_after_content' );
?>
<
/div>
<
!-- #primary -->
<
?php do_action( 'ocean_after_primary' );
?>
<
?php do_action( 'ocean_display_sidebar' );
?>
<
/div>
<
!-- #content-wrap -->
<
?php do_action( 'ocean_after_content_wrap' );
?>
<
?php get_footer();
?>
#1 我建议你转到管理面板” 推荐” -> ” 所有推荐” , 选择” 编辑推荐” 并在其中检查描述内容
#2 在你的page.php中, 将以下代码放在任何位置, 并检查其是否有效
<
?php echo do_shortcode('[testimonials theme="default_style" paginate="all" count="5" orderby="date" order="ASC" show_title="0" use_excerpt="0" show_thumbs="1" show_date="1" show_other="1" hide_view_more="1" output_schema_markup="1" show_rating="stars"]');
?>
推荐阅读
- WP主题动作只勾一次函数
- WordPress中具有自定义帖子类型的单个页面的层次结构
- 函数get_option()不会从数据库中提取值
- 实时切换WordPress主题而不会丢失功能
- 通过编辑Avada子主题logo.php在WordPress网站上切换特定页面的logo
- #yyds干货盘点#--快速上手redis-sentinel(哨兵)
- #yyds干货盘点#linux命令--Hostname 显示主机名
- #yyds干货盘点#文件初始化脚本
- 性能分析之子锁存器(latch)到SQL