more headlines and all the tags

This commit is contained in:
Willi Junga 2021-02-26 08:19:46 +01:00
parent 0d607fe7fd
commit fc99147613
Signed by untrusted user: JunWi
GPG key ID: 16CD94732DE08DA5
7 changed files with 294 additions and 180 deletions

View file

@ -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')
?>