How to create pagination in page code in wordpress?

前端 未结 2 542
-上瘾入骨i
-上瘾入骨i 2021-01-25 04:47

Hi all I am a new of wordpress I want to create pagination in page but still can not . I try to download plugin or add code and serch in google in youtube but I still can not d

2条回答
  •  孤街浪徒
    2021-01-25 05:20

    Try Its working...

    $zerif_total_posts = get_option('posts_per_page'); /* number of latest posts to show */
                if( !empty($zerif_total_posts) && ($zerif_total_posts > 0) ):
                    echo '
    '; echo '
    '; /* SECTION HEADER */ echo '
    '; $zerif_latestnews_title = get_theme_mod('zerif_latestnews_title'); /* title */ if( !empty($zerif_latestnews_title) ): echo '

    ' . $zerif_latestnews_title . '

    '; else: echo '

    ' . __('Our Client','zerif-lite') . '

    '; endif; /* our Client */ if(is_active_sidebar( 'menu_client' )): echo ''; endif; /* subtitle */ $zerif_latestnews_subtitle = get_theme_mod('zerif_latestnews_subtitle'); if( !empty($zerif_latestnews_subtitle) ): echo '
    '.$zerif_latestnews_subtitle.'
    '; endif; echo '
    '; echo '
    '; echo ''; echo '
    '; endif;

提交回复
热议问题