有时您希望在单个帖子中使用自定义CSS。在本教程中,我们将分享一种方法,您可以使用自定义字段轻松地在WordPress单个帖子嵌入自定义CSS。

首先,您需要打开 header.php 并在< headgt;< / headgt;之间的某处插入此代码代码。

lt;?php if(is_single()){
    $ customstyle = get_post_meta($ post-> ID,“customstyle”,true);
    ,null,null,3],[“if(!empty($ customstyle)){?>
        < style type =“text / css”>
        <?php echo $ customstyle; ?>
        <风格>
    <?php}
}?>

完成后,您可以在每个帖子添加名称为customstyle的自定义字段,并在其中添加css代码。

例如,如果您希望某个图像具有边框,则可以add:

#coolimageclass {border:5px solid #ccc;}

评论被关闭。