Activating plugins wordpress when creating new theme

I have been creating a new WordPress theme, I have most of everything working fine, except when I install and enable a plugin, nothing happens.

Specifically the yoast seo plugin.

Related posts

1 comment

  1. You may have forgotten to place the WordPress PHP functions wp_head(); and wp_footer(); respectively in the header and footer of the template.

    Plugin scripts and stylesheets (and other important functions) are loaded through these hooks, and it is very important to always do this when creating your own template.

Comments are closed.