jsa
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?<?php
/**
* Template for displaying pages
*
* @package bootstrap-basic
*/get_header();
/**
* determine main column size from actived sidebar
*/
$main_column_size = bootstrapBasicGetMainColumnSize();
?>
<?php get_sidebar(‘left’); ?>
<div class=”col-md-<?php echo $main_column_size; ?> content-area” id=”main-column”>
<main id=”main” class=”site-main” role=”main”>
<?php
while (have_posts()) {
the_post();get_template_part(‘content’, ‘page’);
echo “\n\n”;
// If comments are open or we have at least one comment, load up the comment template
if (comments_open() || ‘0’ != get_comments_number()) {
comments_template();
}echo “\n\n”;
} //endwhile;
?>
</main>
</div>
<?php get_sidebar(‘right’); ?>
<?php get_footer(); ?>Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?i did not find bootstrapbasicpagination() in single.php?
Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?Thanks vee
i am trying it..Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?can u plz guide me in detail.
Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?yes i find bootstrapBasicPagination() but dont know from to start putting pagenavi plugin code in these files?
<?php bootstrapBasicPagination(); ?>
<?php } else { ?>
<?php get_template_part(‘no-results’, ‘archive’); ?>
<?php } //endif; ?>this line is replace by which code?
Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?thanks for reply.
actually i am new to bootstrap theme so cant find that code to put pagination function i try to find in index.php and function.php but didn’t find the area to put pagination code.
i want to show pagination on blog post and pages.
plz help me in this regard..Forum: Plugins
In reply to: [WP-PageNavi] Navigation Not Working in bootstrap theme?can u plz tell me how to configure pagenavi plugin in bootstrap basic theme i tried a lot but did not get result .. is there any simple way to do it?