0
我々は、ページ固有のJSを実行することができます。WordPress Sage:特定のシングルまたはアーカイブのCPTページでJSを焼く方法は? WordPressのセージのmain.jsで
var Sage = {
// All pages
'common': {
init: function() {
// JavaScript to be fired on all pages
},
finalize: function() {
// JavaScript to be fired on all pages, after page specific JS is fired
}
},
// Home page
'home': {
init: function() {
// JavaScript to be fired on the home page
},
finalize: function() {
// JavaScript to be fired on the home page, after the init JS
}
},
// About us page, note the change from about-us to about_us.
'about_us': {
init: function() {
// JavaScript to be fired on the about us page
}
}
};
しかし、どのように特定の単一またはアーカイブCPTページにJSを実行するには?