• Resolved Giorgio25b

    (@giorgio25b)


    Paste this snippet in your child-theme/functions.php

    // Exclude images from search results - WordPress
    add_action( 'init', 'exclude_images_from_search_results' );
    function exclude_images_from_search_results() {
        global $wp_post_types;
    
        $wp_post_types['attachment']->exclude_from_search = true;
    }
  • The topic ‘Exclude image titles from search results’ is closed to new replies.