{"id":4219,"date":"2022-08-22T00:10:44","date_gmt":"2022-08-21T18:40:44","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/"},"modified":"2022-08-22T00:10:44","modified_gmt":"2022-08-21T18:40:44","slug":"solved-where-is-the-right-place-to-register-enqueue-scripts-styles","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/","title":{"rendered":"[Solved] Where is the right place to register\/enqueue scripts &#038; styles"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-21579\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"21579\" data-parentid=\"21561\" data-score=\"67\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<h2>Why registering and queuing properly matters<\/h2>\n<ul>\n<li>\n<p>it should be <strong>in time<\/strong> &#8211; earlier than script\/style is up for being output to page, otherwise it is too late;<\/p>\n<\/li>\n<li>\n<p>it should be <strong>conditional<\/strong> &#8211; otherwise you are loading stuff where you don&#8217;t need it and cause performance and functionality issues, for this you need WP environment loaded to late stage.<\/p>\n<\/li>\n<\/ul>\n<h2>The three stages of the process<\/h2>\n<ol>\n<li>\n<p><strong>register<\/strong> &#8211; this explains WP details about script\/style and makes it store that info;<\/p>\n<\/li>\n<li>\n<p><strong>enqueue<\/strong> &#8211; (often lumped together with register in one <code>wp_enqueue_*()<\/code> call) &#8211; this tells WP to add scripts\/style to the queue, according to its settings (dependencies, header\/footer loading).<\/p>\n<\/li>\n<li>\n<p><strong>print<\/strong> &#8211; this happens when WP processes queue, tries to load something specific for itself <strong>or<\/strong> when you explicitly do it with <code>wp_print_*()<\/code> function.<\/p>\n<\/li>\n<\/ol>\n<h2>Front-end structure of functions and hooks<\/h2>\n<ul>\n<li>\n<p><code>wp_head()<\/code><\/p>\n<ul>\n<li>\n<p><code>wp_head<\/code><\/p>\n<ul>\n<li>\n<p><em>(1)<\/em> <code>wp_enqueue_scripts()<\/code><\/p>\n<p><code>wp_enqueue_scripts<\/code> <strong>\u00ab this is what you need<\/strong><\/p>\n<\/li>\n<li>\n<p><em>(8)<\/em> <code>wp_print_styles()<\/code><\/p>\n<\/li>\n<li>\n<p><em>(9)<\/em> <code>wp_print_head_scripts()<\/code><\/p>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li>\n<p><code>wp_footer()<\/code><\/p>\n<ul>\n<li>\n<p><code>wp_footer<\/code><\/p>\n<ul>\n<li><em>(10)<\/em> <code>wp_print_footer_scripts()<\/code><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>It goes much deeper, but this is simple and good enough for important points:<\/p>\n<ul>\n<li>\n<p><strong><code>wp_enqueue_scripts<\/code> is most appropriate hook for registering and queuing scripts and styles on front end<\/strong> and it is there specifically for that;<\/p>\n<\/li>\n<li>\n<p><code>init<\/code> has nothing to do with this, it will work, but &#8211; <strong>past Codex recommendation to use only it was incorrect<\/strong>;<\/p>\n<\/li>\n<li>\n<p>you can get away with queuing scripts (not styles) for footer at any point before <code>wp_print_footer_scripts()<\/code> call;<\/p>\n<\/li>\n<li>\n<p><strong><code>wp_print_*<\/code> hooks are NOT appropriate for register\/queue<\/strong>, they are points in code when output is already happening. They are appropriate for manual\/custom script\/style output.<\/p>\n<\/li>\n<\/ul>\n<h2>What about admin?<\/h2>\n<p>Well, the functionality there is even more complex, elaborate and nested.<\/p>\n<ul>\n<li>\n<p>for starters <strong>just use <code>admin_enqueue_scripts<\/code> hook<\/strong> (it gets passed <strong><code>$hook_suffix<\/code> global for conditional stuff<\/strong>) for everything, it will do nicely for most cases;<\/p>\n<\/li>\n<li>\n<p>when you need something complex &#8211; look through <code>admin-header.php<\/code> and dig from there for appropriate hooks.<\/p>\n<\/li>\n<\/ul>\n<h2>What about login?<\/h2>\n<p>There&#8217;s a specific hook named <code>login_enqueue_scripts<\/code>.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">8<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Where is the right place to register\/enqueue scripts &#038; styles <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Why registering and queuing properly matters it should be in time &#8211; earlier than script\/style is up for being output to page, otherwise it is too late; it should be conditional &#8211; otherwise you are loading stuff where you don&#8217;t need it and cause performance and functionality issues, for this you need WP environment &#8230; <a title=\"[Solved] Where is the right place to register\/enqueue scripts &#038; styles\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/\" aria-label=\"More on [Solved] Where is the right place to register\/enqueue scripts &#038; styles\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[627],"tags":[690,691,692,694,693],"class_list":["post-4219","post","type-post","status-publish","format-standard","hentry","category-wordpress","tag-hooks","tag-wp-enqueue-script","tag-wp-enqueue-style","tag-wp-register-script","tag-wp-register-style"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Where is the right place to register\/enqueue scripts &amp; styles - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Where is the right place to register\/enqueue scripts &amp; styles - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Why registering and queuing properly matters it should be in time &#8211; earlier than script\/style is up for being output to page, otherwise it is too late; it should be conditional &#8211; otherwise you are loading stuff where you don&#8217;t need it and cause performance and functionality issues, for this you need WP environment ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-21T18:40:44+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Where is the right place to register\/enqueue scripts &#038; styles\",\"datePublished\":\"2022-08-21T18:40:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/\"},\"wordCount\":324,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"hooks\",\"wp-enqueue-script\",\"wp-enqueue-style\",\"wp-register-script\",\"wp-register-style\"],\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/\",\"name\":\"[Solved] Where is the right place to register\/enqueue scripts & styles - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-08-21T18:40:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Where is the right place to register\/enqueue scripts &#038; styles\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Where is the right place to register\/enqueue scripts & styles - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Where is the right place to register\/enqueue scripts & styles - JassWeb","og_description":"[ad_1] Why registering and queuing properly matters it should be in time &#8211; earlier than script\/style is up for being output to page, otherwise it is too late; it should be conditional &#8211; otherwise you are loading stuff where you don&#8217;t need it and cause performance and functionality issues, for this you need WP environment ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/","og_site_name":"JassWeb","article_published_time":"2022-08-21T18:40:44+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Where is the right place to register\/enqueue scripts &#038; styles","datePublished":"2022-08-21T18:40:44+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/"},"wordCount":324,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["hooks","wp-enqueue-script","wp-enqueue-style","wp-register-script","wp-register-style"],"articleSection":["WordPress"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/","url":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/","name":"[Solved] Where is the right place to register\/enqueue scripts & styles - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-08-21T18:40:44+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-where-is-the-right-place-to-register-enqueue-scripts-styles\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Where is the right place to register\/enqueue scripts &#038; styles"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/4219","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=4219"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/4219\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=4219"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=4219"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=4219"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}