HTML tag. * @param string $handle The registered script handle. */ public static function add_defer_attr( string $tag, string $handle ): string { $defer_handles = array( 'cyywordpress-main' ); if ( in_array( $handle, $defer_handles, true ) ) { return str_replace( ' src=', ' defer src=', $tag ); } return $tag; } } endif;