星期四 , 23 1 月 2025

在主题字段中添加头部代码字段

用wp_head 钩子添加回调函数,然后添加字段 // Custom Header Code
echo htmlspecialchars_decode( tie_get_option(‘header_code’) ) .”\n”;

然后根据字段设置主题颜色 ,同样是放在wp_head的回调函数

// Theme Skin ——————————————————————— */
if( tie_get_option( ‘global_color’ ) )
tie_theme_color( tie_get_option( ‘global_color’ ) );

elseif(tie_get_option(‘theme_skin’))
tie_theme_color(tie_get_option(‘theme_skin’));

tie_theme_color 函数

function tie_theme_color( $color ){ ?>

#commentform {
	border-bottom-color: <?php echo $color; ?>;
}



<?php
}

输出自定义的css字段在头部

// Custom CSS Codes —————————————————– */
echo “\n”.str_replace( $pre_code , “”, htmlspecialchars_decode( tie_get_option(‘css’)) );