forked from NB-Public/jkb-childtheme
more headlines and all the tags
This commit is contained in:
parent
0d607fe7fd
commit
fc99147613
7 changed files with 294 additions and 180 deletions
|
@ -1,23 +1,23 @@
|
|||
<?php
|
||||
|
||||
// This is not needed. The parent theme has no style information inside the main
|
||||
// style.css files whatsoever
|
||||
//
|
||||
// add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
|
||||
// function enqueue_parent_styles() {
|
||||
// wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
|
||||
// }
|
||||
// This is not needed. The parent theme has no style information
|
||||
// whatsoever inside the main `style.css` file in the root folder.
|
||||
//
|
||||
// add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
|
||||
// function enqueue_parent_styles() {
|
||||
// wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
|
||||
// }
|
||||
|
||||
|
||||
// The parent-theme adds the style with a priority of 999. In order
|
||||
// for us to be able to override styles from the parent-theme we have to
|
||||
// render our styles even later
|
||||
add_action( 'wp_enqueue_scripts', 'enqueue_grlp_styles', 1000);
|
||||
// The parent-theme adds the style with a priority of 999. In order
|
||||
// for us to be able to override styles from the parent-theme we have to
|
||||
// render our styles even later
|
||||
add_action( 'wp_enqueue_scripts', 'enqueue_grlp_styles', 1000);
|
||||
|
||||
function enqueue_grlp_styles() {
|
||||
wp_enqueue_style( 'gruerlp-main', get_stylesheet_directory_uri() . '/lib/css/style_gruene_rlp.css');
|
||||
}
|
||||
function enqueue_grlp_styles() {
|
||||
wp_enqueue_style( 'gruerlp-main', get_stylesheet_directory_uri() . '/lib/css/style_gruene_rlp.css');
|
||||
}
|
||||
|
||||
require_once('functions/childtheme-shortcodes.php')
|
||||
require_once('functions/childtheme-shortcodes.php')
|
||||
|
||||
?>
|
||||
|
|
Reference in a new issue