Make WordPress Core


Ignore:
Timestamp:
04/28/2004 07:27:03 AM (21 years ago)
Author:
saxmatt
Message:

Allow WordPress installation URI and blog URI to be different.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/template-functions-post.php

    r1150 r1203  
    374374        $nextpage = intval($paged) + 1;
    375375        if (!$max_page || $max_page >= $nextpage) {
    376             echo  get_settings('siteurl') .'/'.$pagenow.$querystring_start.
     376            echo  get_settings('home') .'/'.$pagenow.$querystring_start.
    377377                ($qstr == '' ? '' : $qstr.$querystring_separator) .
    378378                'paged'.$querystring_equal.$nextpage;
     
    426426        $nextpage = intval($paged) - 1;
    427427        if ($nextpage < 1) $nextpage = 1;
    428         echo  get_settings('siteurl') .'/'.$pagenow.$querystring_start.
     428        echo  get_settings('home') .'/'.$pagenow.$querystring_start.
    429429            ($qstr == '' ? '' : $qstr.$querystring_separator) .
    430430            'paged'.$querystring_equal.$nextpage;
Note: See TracChangeset for help on using the changeset viewer.