在自定义WordPress meta框中添加CSS类的方法如下:
.custom-meta {
background-color: red;
}
function enqueue_custom_meta_styles() {
wp_enqueue_style( 'custom-meta-styles', get_template_directory_uri() . '/css/custom-meta.css' );
}
add_action( 'admin_enqueue_scripts', 'enqueue_custom_meta_styles' );
现在,你已经成功地将CSS类添加到自定义WordPress meta框中。当你在后台编辑页面时,你的自定义meta框将应用"custom-meta"类的样式。
注意:以上步骤假设你正在使用自定义主题。如果你使用的是现有的主题,请将"functions.php"文件中的代码添加到主题的"functions.php"文件中,而不是直接修改主题文件。
领取专属 10元无门槛券
手把手带您无忧上云