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

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.

主站蜘蛛池模板: 四川省| 迁安市| 克东县| 津市市| 怀宁县| 彝良县| 财经| 理塘县| 淮北市| 东明县| 什邡市| 梨树县| 宜章县| 耿马| 永定县| 上犹县| 大理市| 民勤县| 张北县| 龙井市| 石棉县| 巴林左旗| 松江区| 蓬安县| 共和县| 清徐县| 佳木斯市| 浦城县| 调兵山市| 太湖县| 西畴县| 清远市| 乐平市| 平乡县| 花莲市| 旬阳县| 宁乡县| 珲春市| 尖扎县| 新郑市| 巩留县|