I’m currently doing some speed optimisation and one of the main things scoring the site down is:- “Preload key requests 2.64 s Consider using to prioritize fetching resources that...
  • May 18, 2022
  • 0 Comments
I have set a page as a homepage for my site. There are specific style sheets just for the homepage that I don’t need to use globally. I’m still...
  • May 18, 2022
  • 0 Comments
I am trying to use wp_add_inline_style in plugin. I want to add some style when shortcode runs. add_action('wp_enqueue_scripts', 'cod_enqueue_scripts'); add_shortcode('cod', 'cod_process_shortcode'); function cod_enqueue_scripts() { wp_enqueue_style('cod-style', plugins_url('css/style.css', __FILE__)); } function...
  • May 17, 2022
  • 0 Comments
I am trying to include a CSS file using wp_enqueue_style conditionally on whether I am on the front page. I am testing for the home page with this code:...
  • May 17, 2022
  • 0 Comments