$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>wp dependencies - Set a parent script presence status true so that child scripts load in wordpress|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

wp dependencies - Set a parent script presence status true so that child scripts load in wordpress

matteradmin7PV0评论

I didn't know how to write a good title for my problem.

I'm trying to integrate some scripts in js file and dequeue them to decrease browser requests. So let's say we have some child scripts which for some reasons I don't want to integrate them and they have dependencies on a parent script that I've dequeued it and integrated into another script file. Now I know I've loaded the parent script (inside the integrated script) and I want to broadcast its presence so that all depended child scripts load. How can I do that?

wp_script_is determines if a script has been enqueued. I want to make its output true as well for some handlers (parent scripts I mentioned).

Post a comment

comment list (0)

  1. No comments so far