Dager
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [AlbinoMouse] next_posts_link() and previous_posts_link()I looked into creating a child theme. I got the style.css set up, but how would I go about getting the child theme to work so that I can modify the template-tags.php as part of the child theme?
Forum: Themes and Templates
In reply to: [AlbinoMouse] next_posts_link() and previous_posts_link()Awesome, thank you for the help!
Forum: Themes and Templates
In reply to: [AlbinoMouse] next_posts_link() and previous_posts_link()Correct me if I’m wrong but I believe I got it. Locate the lines of codes below and delete the ones in bold. Replace “get_next_posts_link” with “wp_pagenavi”
<?php if ( get_next_posts_link() ) : ?>
<li class=”older-posts”><?php next_posts_link( ‘← ‘ . __( ‘Older posts’, ‘albinomouse’ )); ?>
<?php endif; ?><?php if ( get_previous_posts_link() ) : ?>
<li class=”newer-posts”><?php previous_posts_link( __( ‘Newer posts’, ‘albinomouse’) . ‘ →</span>’ ); ?>
<?php endif; ?>Forum: Themes and Templates
In reply to: [AlbinoMouse] next_posts_link() and previous_posts_link()Pixelstrolch,
The code is different from the default wordpress. How would I go about integrating the two codes below to get WP-PageNavi to work in the template-tags.php?
<?php wp_pagenavi(); ?> or
<?php wp_pagenavi( array( ‘type’ => ‘multipart’ ) ); ?>Thanks for your help.
Forum: Plugins
In reply to: [Column Posts] Problem with 3rd Column- with more than 5 posts.in your admin panel, you need to go to Settings>Column Posts and under “Number of Columns” you need to select “Three” and then click on “Save Changes”