/home/runcloud/webapps/app-erova-live/wp-content/themes/erova2020/page.php
<?php
global $post;
$current_post = $post;
if ( $post->post_parent ) {
$siblings = new WP_Query( array(
'post_type' => 'page',
'order' => 'ASC',
'post_parent' => $post->post_parent,
'post__not_in' => array( $post->ID )
) );
}
if ( $siblings->have_posts() ) :
?>
<?php while ( $siblings->have_posts() ) : $siblings->the_post(); ?>
<div class="cell small-12 medium-6">
<a href="<?php the_permalink()?>" class="card--product">
<div class="card__inner">
<span class="card__title"><?php the_title(); ?></span>
</div>
</a>
</div>
Arguments
"Call to a member function have_posts() on null"
/home/runcloud/webapps/app-erova-live/wp-includes/template-loader.php
}
break;
}
}
if ( ! $template ) {
$template = get_index_template();
}
/**
* Filters the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
}
return;
}
/home/runcloud/webapps/app-erova-live/wp-blog-header.php
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
Arguments
"/home/runcloud/webapps/app-erova-live/wp-includes/template-loader.php"
/home/runcloud/webapps/app-erova-live/index.php
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
Arguments
"/home/runcloud/webapps/app-erova-live/wp-blog-header.php"