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.
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.
Comments are closed.
You may have forgotten to place the WordPress PHP functions
wp_head();
andwp_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.