0
我用這個「定製」分頁腳本我的wordpress模板:自定義永久鏈接的WordPress分頁
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query('showposts='.get_option('posts_per_page').'&paged='.$paged);
while ($wp_query->have_posts()) : $wp_query->the_post();
echo '<a class="current";
echo '" href="';
the_permalink();
echo '">';
the_title();
echo '</a>';
endwhile;
next_posts_link('Load more articles...');
$wp_query = null; $wp_query = $temp;
所以最終,它創建了一個「加載更多」按鈕進入http://blog.com/頁/ 2 現在的問題是,自定義永久鏈接的網址類似於此:http://blog.com/自定義/東西 /頁/ 2打破了腳本,並且不顯示下一個結果,但原稿。
您可能不知道我該如何解決這個問題?或者可能強制http://blog.com/page/2 in functions.php?
感謝您的幫助!
@Arun哇,你知道這個想法從來沒有發生過我!正如我實際解釋的,我沒有登錄到一個帳戶 - 因此,在提交後沒有創建另一個帳戶的情況下,沒有選擇刪除評論。你只能編輯你的評論。 請先閱讀說明,不要做不必要的評論。你可以刪除你的評論。 – Oliver