Inspireddrum
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Fixing WordPress
In reply to: WordPress Admin Pannel Extremely SlowI deleted my current theme, resorted to the default theme, disabled all plugins, and the problem still occurred.
Forum: Fixing WordPress
In reply to: WP_PageNavi Loading and then DisappearingFigured it out. Oddly enough, I added google translate to the site recently and had forgotten about it. Once I removed the widget with the code from the sidebar PageNavi appeared as normal again.
Strange.
Forum: Fixing WordPress
In reply to: WP_PageNavi Loading and then DisappearingForum: Fixing WordPress
In reply to: Making Next Page WorkTHANKS WPROCK! That worked! 🙂
Forum: Fixing WordPress
In reply to: Making Next Page WorkJust tried what you suggested alchymyth and the same thing is still happening. Any other ideas?
Forum: Fixing WordPress
In reply to: Making Next Page WorkThat just removed the page navigation at the bottom of the page.
Forum: Fixing WordPress
In reply to: Making Next Page WorkHere’s what the posts page looks like. I see the WP_Query function but don’t know where to put the reset. There’s also a WP_pagenavi query at the bottom but I don’t think that’s affecting it.
<div id="blog_content"> <? $args = array( 'post_type' => 'post', 'posts_per_page' => 5, 'paged' => $paged ); $the_query = new WP_Query( $args ); while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <div class="blog_post"> <? if ( has_post_thumbnail() ) : ?> <a href="<? the_permalink(); ?>"> <? the_post_thumbnail('sm_thumb', array( 'class' => 'excerpt_thumb' ) ); ?> </a> <? else: ?> <a href="<? the_permalink(); ?>"><img class="excerpt_thumb" src="<? bloginfo('template_url'); ?>/img/default_post_thumb.jpg"></a> <? endif; ?> <div class="post_block"> <h1 class="font"><a href="<? the_permalink(); ?>"><? the_title(); ?></a></h1> <div class="meta">by <? echo get_the_author(); ?> on <? echo get_the_date(); ?> in <ul class="excerpt_cats"><? echo get_the_category_list(); ?></ul></div> <? the_excerpt(); ?> </div> </div> <? endwhile; wp_pagenavi(array( 'query' => $the_query )); wp_reset_postdata(); ?> </div>
Viewing 7 replies - 1 through 7 (of 7 total)