我正在致力于新的自定义主题。我已经安装了woocommerce插件。我已经从xml文件导入产品。我曾尝试测试评级功能。它在wordpress的默认主题Twenty12,Twenty16上工作。但是当我切换到我的自定义主题时。评论部分未显示评级。
请看屏幕截图。评论区只有文本区。
下面是我的comments.php代码
<div class="comments">
<?php if (post_password_required()) : ?>
<p><?php _e( 'Post is password protected. Enter the password to view any comments.', 'html5blank' ); ?></p>
</div>
<?php return; endif; ?>
<?php if (have_comments()) : ?>
<h2><?php comments_number(); ?></h2>
<ul>
<?php wp_list_comments('type=comment&callback=html5blankcomments'); // Custom callback in functions.php ?>
</ul>
<?php elseif ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
<p><?php _e( 'Comments are closed here.', 'html5blank' ); ?></p>
<?php endif; ?>
<?php comment_form(); ?>
</div>
https://stackoverflow.com/questions/51497758
复制相似问题