This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#infinite-handle span, | |
.button, | |
.comment-navigation .nav-next a, | |
.comment-navigation .nav-previous a, | |
.main-navigation .menu-toggle, | |
.post-navigation .nav-next a, | |
.post-navigation .nav-previous a, | |
.posts-navigation .nav-next a, | |
.posts-navigation .nav-previous a, | |
button, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Options -IncludesNoExec | |
#php_value memory_limit 50M | |
# BEGIN WordPress | |
<IfModule mod_rewrite.c> | |
Options +FollowSymLinks | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^forum.*$ http://retrorenovation.com/forums/ [R=301,L] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function jc_paged_posts_columns() { | |
echo '<div id="paged-columns">'; | |
global $post; | |
$numposts = 11; | |
$args = array( 'numberposts' => $numposts, 'offset' => 10 ); | |
$column1 = get_posts( $args ); | |
echo '<ul class="column-list">'; | |
echo '<li class="column-heading">Page 2</li><ol>'; | |
foreach ( $column1 as $post ) : setup_postdata($post); ?> | |
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> |