Changeset 39600 for trunk/src/wp-includes/author-template.php
- Timestamp:
- 12/14/2016 04:17:38 AM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/author-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/author-template.php
r38341 r39600 149 149 * @param int|bool $original_user_id The original user ID, as passed to the function. 150 150 */ 151 return apply_filters( 'get_the_author_' . $field, $value, $user_id, $original_user_id );151 return apply_filters( "get_the_author_{$field}", $value, $user_id, $original_user_id ); 152 152 } 153 153 … … 175 175 * @param int $user_id The user ID. 176 176 */ 177 echo apply_filters( 'the_author_' . $field, $author_meta, $user_id );177 echo apply_filters( "the_author_{$field}", $author_meta, $user_id ); 178 178 } 179 179
Note: See TracChangeset
for help on using the changeset viewer.