好吧,也许我想得太难了,但我有两个同名的样式表。一个来自父主题文件夹,另一个来自子主题文件夹。
我想在加载父主题样式后,将该样式从子主题文件夹排队,这样我就可以否决某些类。
这是父主题的排队脚本:
// Register Styles :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
wp_register_style( \'prettyPhoto\', get_template_directory_uri() . \'/stylesheets/prettyPhoto.css\', array(), \'1.0\', \'all\' );
wp_register_style( \'shortcodes\', get_template_directory_uri() . \'/stylesheets/shortcodes.css\', array(), \'1.0\', \'all\' );
wp_register_style( \'retina\', get_template_directory_uri() . \'/stylesheets/retina.css\', array(), \'1.0\', \'only screen and (-webkit-min-device-pixel-ratio: 2)\' );
wp_register_style( \'responsive\', get_template_directory_uri() . \'/stylesheets/responsive.css\', array(), \'1.0\', \'all\' );
wp_register_style( \'rtl\', get_template_directory_uri() . \'/stylesheets/rtl.css\', array(), \'1.0\', \'all\' );
wp_register_style( \'fontello\', get_template_directory_uri() . \'/stylesheets/fontello.css\', array(), \'1.0\', \'all\' );
wp_register_style( \'fontello-ie7\', get_template_directory_uri() . \'/stylesheets/fontello-ie7.css\', array(), \'1.0\', \'all\' );
// Enqueue ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
wp_enqueue_style( \'shortcodes\' );
wp_enqueue_style( \'stylesheet\', get_stylesheet_uri(), array(), \'1.1\', \'all\' );
wp_enqueue_style( \'prettyPhoto\' );
wp_enqueue_style( \'fontello\' );
我想添加另一个“短代码”。来自子主题目录的css,该目录加载在短代码之后。来自父主题目录的css。我该怎么做?