尝试使用JetPack的Portfolio Custom Content Type和Underscores投资组合组件,但不完全确定是否正在加载正确的模板。
是否有一个配置或插件会在浏览器中显示Wordpress模板和template_part文件用于构建页面?
答案 0 :(得分:0)
尝试
<?php echo '<!-- ' . basename( get_page_template() ) . ' -->'; ?>
在footer.php
。
使用get_page_template
转储评论标记中的模板名称 - <!--
和-->
- 因此它在源中可见但对前端查看者不可见。
或使用
<?php get_current_template( true ); ?>
如果你想让它在前端完全可见。
请参阅https://developer.wordpress.org/reference/functions/is_page_template/
有一个提供该功能的插件:https://wordpress.org/plugins/reveal-template/这个提供了这个和许多其他调试信息的插件:https://wordpress.org/plugins/debug-bar/