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

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.

主站蜘蛛池模板: 沙湾县| 阳曲县| 诸城市| 东兴市| 云南省| 海南省| 大竹县| 南皮县| 雷山县| 余江县| 金湖县| 延安市| 屏东县| 崇仁县| 杂多县| 二连浩特市| 静宁县| 台安县| 崇仁县| 玛纳斯县| 南丹县| 神木县| 客服| 拜泉县| 清流县| 怀宁县| 绥中县| 九江县| 沙田区| 天津市| 扶风县| 南昌县| 淅川县| 西平县| 平山县| 贡嘎县| 禄丰县| 衡阳县| 滁州市| 青铜峡市| 青铜峡市|