Skip to content

Instantly share code, notes, and snippets.

@aimahdi
Created November 14, 2025 11:43
Show Gist options
  • Select an option

  • Save aimahdi/d1cbaa518bacc94fcdffa4c6eb705454 to your computer and use it in GitHub Desktop.

Select an option

Save aimahdi/d1cbaa518bacc94fcdffa4c6eb705454 to your computer and use it in GitHub Desktop.
<?php
add_action('template_redirect', function() {
if (is_singular('fluent-products')) {
global $wp_query;
$wp_query->set_404();
status_header(404);
nocache_headers();
include( get_404_template() );
exit;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment