Changeset 28889
- Timestamp:
- 06/29/2014 08:46:33 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/plugin.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/plugin.php
r28888 r28889 96 96 * 97 97 * @param string $tag The name of the filter hook. 98 * @param bool|callback$function_to_check Optional. The callback to check for. Default false.98 * @param callback|bool $function_to_check Optional. The callback to check for. Default false. 99 99 * @return mixed If $function_to_check is omitted, returns boolean for whether the hook has anything registered. 100 100 * When checking a specific function, the priority of that hook is returned, or false if the function is not attached. … … 299 299 * 300 300 * @param string $tag The filter to remove hooks from. 301 * @param bool|int$priority Optional. The priority number to remove. Default false.301 * @param int|bool $priority Optional. The priority number to remove. Default false. 302 302 * @return bool True when finished. 303 303 */ … … 571 571 * 572 572 * @param string $tag The name of the action hook. 573 * @param bool|callback$function_to_check Optional. The callback to check for. Default false.573 * @param callback|bool $function_to_check Optional. The callback to check for. Default false. 574 574 * @return mixed If $function_to_check is omitted, returns boolean for whether the hook has anything registered. 575 575 * When checking a specific function, the priority of that hook is returned, or false if the function is not attached. … … 605 605 * 606 606 * @param string $tag The action to remove hooks from. 607 * @param bool|int$priority The priority number to remove them from. Default false.607 * @param int|bool $priority The priority number to remove them from. Default false. 608 608 * @return bool True when finished. 609 609 */
Note: See TracChangeset
for help on using the changeset viewer.