search
HomeBackend DevelopmentPHP TutorialAnalyze the role and basic usage of function hooks in WordPress, _PHP tutorial

Analysis of the function and basic usage of function hooks in WordPress.

The plug-in mechanism of WordPress is actually just this Hook. It is translated into Chinese as a hook, allowing you to participate The operation of WordPress core is a great thing, let’s learn more about it below.
Hook classification

Hooks are divided into two types, one is called action, and the other is called filter. The implementation principles of these two hooks are basically the same. As will be mentioned later, the difference in usage is that filters have return values, but actions do not.

The idea of ​​an action is to let you perform some functions in a situation or a special location, such as sending an email, etc.; a filter allows you to modify a value that the WordPress core needs to use, and then WordPress uses these Values ​​do something, such as the return value of a function, etc.

Action hook

wp_head is a very commonly used action hook. During theme development, developers will add the wp_head() function to the head tag. In fact, it is this function that calls the wp_head hook.

If the plugin developer wants to add a sentence in the head tag, they can use the wp_head hook. Here is a simple example.

//在 head 标签添加一些内容
function Bing_add_head_tag(){
  echo '添加内容';
}
add_action( 'wp_head', 'Bing_add_head_tag' );

After adding the code, view the source code of the front-end web page, and you can see the content we added in the head tag.

20151222154540066.png (437×83)

The above is a simple example, just printing a sentence. Using this hook, we can also make a plug-in that sends an email to the administrator when encountering a 404 page. I simply wrote one below.

//遇到 404 页面给管理员发送邮件
function Bing_404_page_mail(){
  if( !is_404() ) return;//如果不是 404 页面就退出函数
  $to = get_option( 'admin_email' );//获取管理员地址
  $subject = '遇到 404 页面啦!';//邮件标题
  $message = '404 页面的地址:http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];//邮件内容
  wp_mail( $to, $subject, $message );//发送邮件
}
add_action( 'wp_head', 'Bing_404_page_mail' );

Filter Hooks

Based on my personal experience, filter hooks may be difficult to understand, especially for people who are not familiar with PHP.

Filter hooks allow you to change the value of something. The filter callback function will accept a parameter, which is the current value. Remember the the_content() function used to call the content of the article. This function provides a the_content filter.

Add a function to the_content hook. This function needs to receive a parameter, which is the current value.

//文章内容全部链接新窗口打开
function Bing_autoblank( $content ){//$content 变量就是文章内容,因为其它过滤器也要过滤,所以这个内容可能是经过其它函数过滤的
  $content = str_replace( '<a', '<a target="_blank"', $content );//添加 target="_blank"
  return $content;//必须要把过滤后的内容返回回去,否则值就丢了
}
add_filter( 'the_content', 'Bing_autoblank' );

Hook Principle

In fact, when calling add_action() and add_filter(), only an array element is added to the $wp_filter global variable. What’s more, actions and filters are a common global variable, that is to say, Filters and actions cannot have the same name.

When do_action() is called, it will search for the functions added to this action in the $wp_filter global variable and execute them in a loop.

apply_filters() has one more step than do_action(), which is to receive the return value of this function every time it is called, and finally return the value that has been filtered multiple times for use.

Get the current hook list
WordPress actions and filters are the core part of the plug-in mechanism, allowing you to actively add actions you need to perform in specific places. Generally, you use the add_action() and add_filter() functions to mount functions.

These hooks are stored in the $wp_filter global variable, so to get the hook list, you can directly get the $wp_filter global variable.

<pre class="brush:php;toolbar:false"><&#63;php var_dump( $GLOBALS['wp_filter'] ); &#63;>

The above code will print out the hook list.

20151222154645343.png (388×432)

Articles you may be interested in:

  • PHP code example for adding article list page page number navigation in WordPress theme
  • Enabling theme to support gadgets and adding plug-in enabling functions in WordPress
  • Detailed explanation of the basic method of writing shortcode format tags in WordPress

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1084563.htmlTechArticleAnalysis of the role and basic usage of function hooks in WordPress. The plug-in mechanism of WordPress is actually just this Hook. , it is translated into Chinese as a hook, allowing you to participate in WordPress...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
wordpress后台乱码怎么办wordpress后台乱码怎么办Feb 03, 2023 pm 01:48 PM

wordpress后台乱码的解决办法:1、在wordpress的“wp-admin”文件夹下找到“admin.header.php”文件;2、将“charset”属性值设置为“UTF-8”格式即可恢复正常。

如何解决wordpress标签错误问题如何解决wordpress标签错误问题Feb 03, 2023 pm 02:03 PM

wordpress标签错误的解决办法:1、找到并打开wordpress的“wp-includes”目录下的“class-wp.php”文件;2、修改内容为“$pathinfo = isset( $_SERVER['PATH_INFO'] )?mb_convert_encoding($_SERVER['PATH_INFO'],'utf-8','GBK') : '';”即可。

WordPress设置独立的Description和KeywordsWordPress设置独立的Description和KeywordsFeb 21, 2023 am 11:14 AM

你下载的WordPress主题提供的keywords和description这两个meta标签一般都做得很差,或者根本就不提供,这样不利于SEO。本文将指导你如何给主页、分类、页面以及文章页添加单独的Description 和 Keywords。

wordpress乱码怎么办wordpress乱码怎么办Mar 09, 2023 am 09:13 AM

wordpress乱码的解决办法:1、修改“wp-config.php”文件里的“define(’DB_CHARSET’, ‘utf8′);”为“define(’DB_CHARSET’, ”);”;2、把新数据库的编码设置成“latin1_swedish_ci”;3、以uft8的格式导入备份的数据库文件即可。

wordpress进不去怎么办wordpress进不去怎么办Feb 23, 2023 am 09:41 AM

wordpress进不去的解决办法:1、把地址栏“wp-login.php”后面的参数删掉,然后重新输入密码登录;2、登录FTP,下载“pluggable.php”文件,然后找到“ADMIN_COOKIE_PATH”并将它替换为“SITECOOKIEPATH”即可。

wordpress是saas吗wordpress是saas吗Feb 21, 2023 am 10:40 AM

wordpress不是saas。SaaS是一种软件销售模式,它主要针对云端应用软件,而WordPress是一款CMS系统,它主要针对网站构建和管理。虽然WordPress可以作为SaaS提供服务,但它本质上不是一种SaaS应用。

2023年最新WordPress视频教程推荐2023年最新WordPress视频教程推荐Oct 25, 2019 pm 01:12 PM

本次PHP中文网整合了相关的视频教程,中文手册,以及相关的精选文章安利给大家,统统免费!!!通过我们分享的视频,可随时随地免费观看教程视频,也不需要迅雷或者百度网盘下载了。

wordpress是哪一年的wordpress是哪一年的Feb 01, 2023 am 10:26 AM

wordpress是2003年发布的;Matt于2003年5月27日宣布推出第一版WordPress,受到了社区的欢迎,它基于b2 Cafelog并有显著改进;WordPress的第一个版本包括全新的管理界面、模板、XHTML 1.1兼容模板、内容编辑器。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment