Thank you for your interest in our services! If you have any questions, please feel free to get in touch with us using the contact form.
add_filter( 'wp_robots', function( array $robots ): array { if ( is_front_page() || is_home() || is_singular('post') || is_singular('page') || is_singular('magicpage') || is_category() || is_tax() ) { $robots = array( 'index' => true, 'follow' => true, 'max-snippet' => -1, 'max-video-preview' => -1, 'max-image-preview' => 'large', ); } if ( is_search() || is_404() || is_author() || is_tag() || is_feed() || is_page( array( 'thank-you', ) ) ) { $robots = array( 'noindex' => true, 'nofollow' => true, ); } return $robots; }, 999 );