如何给wordpress内容加上css

如题所述

添加一些额外的CSS样式重新定义某篇WordPress文章的外观风格,可以直接在文章编辑器中直接添加CSS代码。
将下面代码添加到WordPress主题头部模板 header.php中:
<?php if (is_single()) {
$css = get_post_meta($post->ID, 'css', true);
if (!emptyempty($css)) { ?>
<style type="text/css">
<?php echo $css; ?>
</style>
<?php }
} ?>
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答
大家正在搜