使用php if语句的正确方式是什么?

时间:2017-12-04 作者:Dovberman

页面上未显示任何内容。使用PHP 7.0 WordPress,页面的文本区域。我错过了什么?我的代码:

<!DOCTYPE html5>
<html>
<body>
<?php 
if (1<2)  
{
echo "Add multiple lines of text here and watch the scrollbars grow."
} 
?>
</body>
</html>

1 个回复
SO网友:Patrice Poliquin

我假设您正在尝试创建一个链接到WordPress页面的新模板文件。

附加文档:https://codex.wordpress.org/Theme_Development#Basic_Templates

为此,您需要执行以下操作:

<?php
/*
Template Name: My first template file
*/

get_header(); 

?>

    <!-- Main body -->

    <?php
    if (1<2) {
        echo "Add multiple lines of text here and watch the scrollbars grow."
    } 
    ?>

    <!-- End Main body -->

<?php 
get_sidebar();
get_footer(); 
?>
在WordPress仪表板中,您只需在页面属性部分选择模板文件。

<小时>EDIT : 有关创建新模板文件的详细信息。

您可以将新文件另存为my_first_template_file.php 您需要将其上载到您的主题文件夹中。

通常,在FTP中public_html/wp-content/themes/my_theme_name/.

您将在何时放置文件。只需在WordPress仪表板中刷新页面即可。您应该看到模板部分。

enter image description here

结束

相关推荐

在Example.com/Latest上显示所有最新的帖子,并带有filve.php

我想为最新的帖子制定一个重写规则example.com/latest 通过rewrite_rules_array-筛选并显示带有archive.php. 通常这是example.com/index.php 我想是吧?但我用我的主题index.php 用于自定义索引页。index.php?category_name=technik 已成功从中获取输出archive.php, 但是我如何从archive.php 没有任何额外的过滤?add_filter(\"rewrite_rules_array\", fun