No index Specific attachment types

#591658
  • Resolved Raw Videos
    Rank Math free

    Hello there,
    I am looking to No index image attachment mime type alone, but want to index audio or other mime types.
    Is there any function to do that?

    I only want to no-index image attachment links and at the same time index other mime types like audio,zip,pdf,etc…

Viewing 1 replies (of 1 total)
  • Hello,

    Thank you for contacting Rank Math and bringing your concern to our attention.

    In this case, you can set the media attachments to index in Rank Math > Titles & Meta > Attachments > Media Robots Meta.

    Then, add this filter to your site to noindex the image attachments only:

    add_filter( 'rank_math/frontend/robots', function( $robots ) {
    	if( wp_attachment_is_image() ) {
    		$robots['index'] = 'noindex';
    		$robots['follow'] = 'nofollow';
    	}
    	return $robots;
    });

    And here’s a guide to adding the code to the website:
    https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps.

    Thank you.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 1 replies (of 1 total)

The ticket ‘No index Specific attachment types’ is closed to new replies.