-
AuthorPosts
-
April 5th, 2014 at 06:23 #24758Foster Ho
Hi all
I am a beginner and face a problem that my page does not have pagination in the front page.
Could any expert teach me how to add the button of “More Posts” at the bottom of the page or simply add “1 , 2 , 3 … 10” ?
For example: http://www.lifewithduke.com/
April 5th, 2014 at 06:27 #24759Foster HoJuly 8th, 2014 at 20:44 #26056BartekHi Foster Ho,
Did You solved the problem somehow? I still don’t know how to do this :/
July 12th, 2014 at 19:43 #26082WaltParabola Settings >> Graphics Settings >> Pagination >> Enable
August 15th, 2014 at 11:37 #26755t-beriumIs enabled, but doesn’t work =/
November 19th, 2014 at 18:43 #28298VictorAs long as I can say, the problem is that the presentation page is fixed and the number pagination is only for blog page, to say so.If you disallow presentation page, you will see the numbers in the bottom, although you would not have the slider and menus. I still cannot find a way to use presentation page (with the menus and the slider) in a way that older posts could be accessed. How could we make it possible?
January 20th, 2015 at 15:58 #29192madloptI spent two days looking for how to fix this bug. And, in my opinion, i found how.
In content/content-frontpage.php, find that code:/* Start the Loop */ $the_query = new WP_Query(array('posts_per_page'=>$parabolas['parabola_frontpostscount']) );
And change it to that:
/* Start the Loop */ $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $the_query = new WP_Query( array('posts_per_page'=>$parabolas['parabola_frontpostscount'], 'paged'=>$paged) );
Don’t forget to uncomment that line:
//if($parabola_pagination=="Enable") parabola_pagination(); else parabola_content_nav( 'nav-below' );
It is a pity that such beautiful products are released with these ugly bugs that are not a programmer will not be able to fix it. I am convinced that if something you know how to best do it yourself!
January 21st, 2015 at 13:10 #29212madloptAnd one thing.
Don’t forget to set same number of posts per page in the /wp-admin/options-reading.php!February 23rd, 2015 at 04:22 #30659Fabionodariphoto.comSorry but for me it doesn’t work… Im using a child theme. Do you think I should use a different code?
-
AuthorPosts
The topic ‘How to add Pagination in the presentation page like this?’ is closed to new replies.