因为 wp_head() 的内容实际上就只有 do_action( 'wp_head' ); 这一行内容,而 wp_footer() 的内容也只有 do_action('wp_footer');所以我们直接把 do_action 的语法换到图上去,比较容易做说明,因此示意图变成: 如此,只要执行到输出 header.php 时,就会执行到 wp_head(),就如同执行到 do_action( 'wp...
wp_enqueue_scriptsnotwp_head. Here's the snippet function to do this. And referthisfor more details functionslug_cssinvolve(){//for custom scriptwp_register_script('custom-script',plugins_url('/js/custom-script.js',__FILE__) );//for librarywp_register_script('custom-script',plugins_url...
因为 wp_head() 的内容实际上就只有 do_action( 'wp_head' ); 这一行内容,而 wp_footer() 的内容也只有 do_action('wp_footer');所以我们直接把 do_action 的语法换到图上去,比较容易做说明,因此示意图变成: 如此,只要执行到输出 header.php 时,就会执行到 wp_head(),就如同执行到 do_action( 'wp...
依然是打开 functions.php 在其中添加下面的代码。 remove_action('wp_head', 'wp_generator'); 除了上面说的这些,根据个人爱好,还可以删除一些作用不大的信息,不再细说。
add_action( 'wp_head', array( 'MyClass', 'my_static_method' ) ); class MyClass { public function __construct() { // The connection method of a class inside a class add_action( 'save_post', array( $this, 'my_public_method' ) ); ...
第四。WordPress版本信息是默认添加在系统中的,这可以为提醒用户升级服务,可是,如果你暂时不想升级,删掉它倒是可以更清静。依然是打开 functions.php 在其中添加下面的代码。 remove_action('wp_head', 'wp_generator'); 1. 除了上面说的这些,根据个人爱好,还可以删除一些作用不大的信息,不再细说。
WordPress,WordPress插件开发 Leo 2024腾讯云QCloud618年中大促 2核2G4M云服务器 新老同享 99元/年 Vultr海外云服务器,注册即送$250 Linode(Akamai)$100美元试用 外贸云主机首选SiteGround 域名主机商优惠信息推送QQ群:665443669,获取商家优惠推送、禁言。
Actions Run During a Typical Request These actions are called when a logged-in user opens the home page inVersion 3.3.1. This list may show only the first time each action is called, and in many cases no function is hooked to the action. Themes and plugins can cause actions to be calle...
add_action('admin_head','welcome');//当管理后台的header加载的时候执行; add_action('wp_loaded','welcome');//wordpress刚刚加载的时候就立即执行; add_action('the_post','welcome');//每输出一篇文章的时候就执行一次; add_action('save_post','debug_wp');//当保存文章的那一瞬间执行; ...
wp_footer Runs when the template calls the wp_footer() function, generally near the bottom of the blog page. wp_head Runs when the template calls the wp_head() function. This hook is generally placed near the top of a page template between <head> and </head>. This hook does not...