yashbee
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Fixing WordPress
In reply to: WP_Query with custom post type in args stopped workingThank you!
Forum: Fixing WordPress
In reply to: WP_Query with custom post type in args stopped workingThe error log says:
[07-May-2017 13:04:39 UTC] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 2097152 bytes) in /home/**/public_html/wp-includes/wp-db.php on line 2416
Forum: Fixing WordPress
In reply to: Some pages not loading fullyThe problem seems to be in this part of the code:
<?php $args = array( 'post_type' => 'family-members', 'posts_per_page' => -1 ); $the_query = new WP_Query( $args ); ?>Forum: Fixing WordPress
In reply to: Some pages not loading fully@pxforti
Yes, I am aware of the text being there. But there is more content on the right column than what is being loaded. Also, the background color is white and looks fine on my local machine.Forum: Plugins
In reply to: [WP-PageNavi] WP-PageNavi is showing the first page onlyGot the mistake.
Changed this –
<?php wp_pagenavi(); ?>to this –
<?php wp_pagenavi( array( 'query' => $the_query ) ); ?>
Viewing 5 replies - 1 through 5 (of 5 total)