• Resolved japonicus

    (@japonicus)


    Downloads appear to be being tagged with an x-robots noindex header. Would it be possible to provide an option or api hook to disable this – I would like downloads to appear in search results.

Viewing 1 replies (of 1 total)
  • Plugin Author Razvan Aldea

    (@raldea89)

    Hello @japonicus ,

    You can attach to this hook and unset the X-Robots-Tag header.

    A simple snippet could look like the following and will need to be added to your child theme’s functions.php file:

    add_filter(
    	'dlm_download_headers',
    	function ( $headers ) {
    		unset( $headers['X-Robots-Tag'] );
    
    		return $headers;
    	},
    	15,
    	1
    );
    

    Warmly,
    Razvan

Viewing 1 replies (of 1 total)
  • The topic ‘remove x-robots noindex tag’ is closed to new replies.