gpt4 book ai didi

html - WordPress 页面模板中是否需要标签 'html' 和 'body'?

转载 作者:行者123 更新时间:2023-11-28 05:03:28 25 4
gpt4 key购买 nike

我正在为 WordPress 网站 创建页面模板。

在文件 newpagetemplate.php 中,我目前有这段代码,而且只有这段代码:

<html>
<body>
<?php
/*
Template Name: Salespage
*/
?>
<div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
</body>
</html>

我需要进行修改,设置边距、字体等的值。

在上面的代码中,我需要'html'和'body'标签吗?

(如果我去掉这些标签,应用了这个页面模板的页面仍然显示正常。)

最佳答案

我不知道为什么你会收到这么多理论上的答案。对我来说,这似乎是一种无趣的浪费时间。

简单的答案是否。

从您提供的代码来看,您似乎正在尝试构建自定义 Wordpress 主题。您需要在 header.php 中放置 doctype 和开始 html/body 标记,并在 footer.php 中关闭这些标记。然后,您从“销售页面”模板中提取页眉和页脚模板。它可能看起来有点像这样:

//header.php

<!DOCTYPE html>
<html>
<head>
<title>Your Title</title>

<?php wp_head(); ?>
</head>
<body>

//newpagetemplate.php

<?php get_header(); ?>

<div class="yourContent">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>

<?php get_footer(); ?>

//footer.php

<?php wp_footer(); ?>
</body>
</html>

关于html - WordPress 页面模板中是否需要标签 'html' 和 'body'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11742198/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com