官术网_书友最值得收藏!

Referencing hooks via add_action() and add_filter()

The final vital component in a WordPress plugin is the hook, which defines when the plugin is executed. This is arguably the most confusing component of a plugin, so we will be thorough in our explanations. Just as in pop-music, the term "hook" is sometimes ambiguous—different people use the term to refer to different things. Technically, the term "hook" should refer to a WordPress event, such as get_header or the_content, but sometimes it is used generally to refer to the add_action() or add_filter() functions which reference the hook. Pay attention to the context, and it should be clear which meaning was intended. The most important thing to understand here is that you determine when your functions execute by attaching them to a WordPress event by using the add_action() or add_filter() functions. Remember: hooks are events.

The syntax for both functions is exactly the same. We'll discuss the reasoning for this shortly, but for now, just compare the two:

add_filter( string $hook, mixed $your_function_name [, int $priority = 10 [, int $accepted_args = 1]])

versus

add_action( string $hook, mixed $your_function_name [, int $priority = 10 [, int $accepted_args = 1]])

In practice, the most common usage includes only the name of the WordPress event and the name of your function, such as:

add_action('admin_footer', 'hello_dolly');

In "Hello Dolly", admin_footer is the action or event, and hello_dolly is the name of the function which we want WordPress to run when the admin_footer event occurs. Note that we have intentionally digressed from WordPress' official terminology for the sake of clarity.

主站蜘蛛池模板: 鄯善县| 万年县| 根河市| 彩票| 黑山县| 湖北省| 遂川县| 泗洪县| 四平市| 武夷山市| 沾化县| 天柱县| 株洲县| 高邑县| 阿克陶县| 平潭县| 柘城县| 遂溪县| 开封县| 榆树市| 八宿县| 扬州市| 山西省| 友谊县| 北票市| 瑞丽市| 汽车| 丽水市| 满洲里市| 甘德县| 龙江县| 浮山县| 红安县| 彭山县| 静宁县| 易门县| 礼泉县| 都匀市| 南平市| 昌江| 施甸县|