我正在开发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(); ?>
相关文章
暂无评论...