Changeset 60179 for trunk/src/wp-includes/plugin.php
- Timestamp:
- 04/22/2025 03:33:38 PM (10 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/plugin.php
r55893 r60179 985 985 * @param int $priority Unused. The order in which the functions 986 986 * associated with a particular action are executed. 987 * @return string Unique function ID for usage as array key. 987 * @return string|null Unique function ID for usage as array key. 988 * Null if a valid `$callback` is not passed. 988 989 */ 989 990 function _wp_filter_build_unique_id( $hook_name, $callback, $priority ) { … … 1006 1007 return $callback[0] . '::' . $callback[1]; 1007 1008 } 1008 } 1009 1010 return null; 1011 }
Note: See TracChangeset
for help on using the changeset viewer.