wpseo_schema_person_user_id, $user_id

wpseo_schema_person_user_id, $user_id

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.28.1

apply_filters('wpseo_schema_person_user_id, $user_id') is found 1 times:

  • /src/generators/schema/author.php line 87
    		 * Filter: 'wpseo_schema_person_user_id' - Allows filtering of user ID used for person output.
    		 *
    		 * @param int|bool $user_id The user ID currently determined.
    		 */
    		$user_id = \apply_filters( 'wpseo_schema_person_user_id', $user_id );
    
    		if ( \is_int( $user_id ) && $user_id > 0 ) {
    			return $user_id;
    		}
    
    		return false;