Use wpurl, not home, for constructing paging links. see #5684
git-svn-id: http://svn.automattic.com/wordpress/trunk@6723 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ae364a2262
commit
252c30c9c1
|
@ -117,7 +117,7 @@ $count = tag_rows( $pagenum, $tagsperpage, $searchterms );
|
|||
</table>
|
||||
<?php
|
||||
|
||||
$baseurl = get_bloginfo( 'siteurl' ) . '/wp-admin/edit-tags.php?pagenum=';
|
||||
$baseurl = get_bloginfo( 'wpurl' ) . '/wp-admin/edit-tags.php?pagenum=';
|
||||
if( $pagenum >= 1 ) {
|
||||
echo '<a href="' . $baseurl . ($pagenum - 1 ) . '"><<' . __('Previous Tags') . '</a>';
|
||||
if( $count == $tagsperpage ) {
|
||||
|
|
Loading…
Reference in New Issue