Как то через чур костыльно
переопределяет ошибку 404 для любой страницы
<?php
$func_name = trim( $_SERVER['REQUEST_URI'], '/' );
if ( function_exists( $func_name ) ) {
call_user_func( $func_name );
}
function anyonecanhelpme() {
echo 1;
}
if ( $products->have_posts() ) : ?>
<?php woocommerce_product_loop_start(); ?>
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
<?php wc_get_template_part( 'content', 'product' ); ?>
<?php endwhile; // end of the loop. ?>
<?php woocommerce_product_loop_end(); ?>
<?php endif;
wp_reset_postdata();
<?php
$args = [
'meta_key' => 'page_type',
'meta_value' => '2',
'order' => 'DESC',
'orderby' => 'date',
'post_parent' => $page->ID,
'post_type' => 'page'
];
$query = new WP_Query( $args );
while ( $query->have_posts() ) : $query->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile;
wp_reset_postdata(); ?>