是否将cutom css代码回显到WordPress页面模板文件?这安全吗?

时间:2021-07-22 作者:Gayal cham

我创建了wordpress页面模板,我只想将此css代码添加到此模板内部。出于安全考虑,我应该逃跑吗?。有谁能帮我解决这个问题吗?。这是我使用的代码。

<?php  $style = "<style type=\'text/css\'> .post-related {position: relative; width: 21.333%!important;} </style>";

echo  $style  ;
?>

1 个回复
最合适的回答,由SO网友:Buttered_Toast 整理而成

非常基本的模板

我创建了一个名为about.php 在我的主题根目录下的pages文件夹中使用此代码。

你可以做同样的事情,也可以根据自己的喜好更改位置,只是不要将其放在子文件夹中的子文件夹中,wordpress无法读取两级it文件夹结构中的模板。

<?php defined(\'ABSPATH\') || exit;

// Template name: About

// this gets the header.php file
get_header();
?>
<!-- Here we can do what ever we need -->
<style>
    .content .headline,
    .content .description {
        text-align: center;
    }

    .content .headline {
        margin: 0 0 20px;
        font-size: 2rem;
    }

    .content .description {
        max-width: 400px;
        margin: 0 auto;
    }
</style>

<div class="content">
    <h1 class="headline">About Us</h1>
    <p class="description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur repellat eius a beatae consectetur, et perferendis impedit molestias itaque esse optio repellendus sapiente iure debitis suscipit temporibus voluptas architecto animi.</p>
</div>
<?php
// this gets the footer.php file
get_footer();
?>