我正在WordPress中开发一个自定义主题,我正在尝试将自定义HTML和PHP放在我的主页模板中。每当我在我的主页模板中发布div或自定义字段的代码时,它们就不会在前端呈现和显示。在下面的示例中,前端未显示<div class="col-full">
。
<?php
/*
Template Name: home
*/
?>
<!DOCTYPE html>
<?php get_header(); ?>
<center>
<div class="col-full">
<?php get_template_part( 'content', get_post_format() ); ?>
</center>
<?php get_footer(); ?>
答案 0 :(得分:0)
查看代码,您已将其设置为模板文件。需要从页面中手动选择这些作为模板才能工作。
我建议您查阅wordpress模板层次结构https://wphierarchy.com/。这将显示您将尝试根据您访问的页面加载哪些文件。
如果您仍然遇到问题,我建议安装插件https://en-au.wordpress.org/plugins/query-monitor/,它会告诉您正在加载的模板以及其他方便的信息。