IT Nursery
I got a pretty basic theme and just found out my style.css file doesn’t get loaded into the <head>. I already searched around but can’t find out, why it’s...
  • April 14, 2022
  • 0 Comments
IT Nursery
I want to use the datepicker that gets bundled with WordPress on the front end of a website. I enqueued jquery-ui-datepicker but the datepicker isn’t styled(no js error in...
  • April 14, 2022
  • 0 Comments
IT Nursery
Enqueuing Google Web Fonts the usual way, i.e., using the wp_enqueue_style function like so… function wpse_google_webfonts() { wp_enqueue_style( 'google-webfonts', 'http://fonts.googleapis.com/css?family=Ubuntu+Condensed|Open+Sans:400italic,700italic,400,700' ); } add_action( 'wp_enqueue_scripts', 'wpse_google_webfonts' ); …results in a...
  • April 14, 2022
  • 0 Comments
IT Nursery
I´m creating a child theme for Twenty Twelve v1.0 and I want to remove the Open Sans font. Open Sans is added in Twenty Twelve´s functions.php: wp_enqueue_style( 'twentytwelve-fonts', add_query_arg(...
  • April 11, 2022
  • 0 Comments