打开主题功能。php编辑器查看/WP内容/主题/[您的主题文件夹],然后在右列中查找主题函数(Functions.php),添加以下内容以添加自定义样式表(用更好的样式表名称替换“custom style.css”,并将“your page slug”替换为要添加自定义样式的页面的slug):
// script manager template for registering and enqueuing files
function childtheme_script_manager() {
// register custom style on your specific page
if (is_page(\'your-page-slug\')) {
wp_register_style(\'custom-css\', get_stylesheet_directory_uri() . \'/custom-style.css\');
wp_enqueue_style (\'custom-css\');
}
}
add_action(\'wp_enqueue_scripts\', \'childtheme_script_manager\');
在主题文件夹中创建一个名为“自定义样式”的样式表。css。添加自定义样式。编写css以针对页面上需要特定样式的任何内容。如果没有更多的信息或在该页面上发布示例代码,就不可能回答这个问题。