WordPress函数文档do_feed_rss()

获取一个动作钩子被激活的次数 描述 译文 检索动作被激活的次数 原文 Retrieve the number …

获取一个动作钩子被激活的次数

描述

译文

检索动作被激活的次数

原文

Retrieve the number of times an action is fired.

用法

<?php did_action$tag ); ?>

参数

$tag

(string) (必填) The name of the action hook.

默认值: None

返回值

(integer) 

The number of times action hook $tag is fired

示例

Using did_action() function to make sure custom meta field is only added during the first run since it can run multiple times.

注意

  • 使用到 global: (unknown type) $wp_actions

历史

添加于 版本: 2.1

源文件

did_action() 函数的代码位于 wp-includes/plugin.php.

相关

Actions:
has_action(),
add_action(),
do_action(),
do_action_ref_array(),
did_action(),
remove_action(),
remove_all_actions()

  • 原文:http://codex.wordpress.org/Function_Reference/did_action
类别:WordPress函数文档

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT