Skip to:
Content

bbPress.org

Changeset 3490


Ignore:
Timestamp:
09/06/2011 04:16:39 AM (15 years ago)
Author:
johnjamesjacoby
Message:

Turn off canonical on paged pages and singulars to allow shortcode pagination to work. Fixes #1628.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-includes/bbp-core-compatibility.php

    r3472 r3490  
    12221222                $redirect_url = false;
    12231223
    1224             // ...and single replies
     1224            // ...and single replies...
    12251225            } elseif ( bbp_is_single_forum() ) {
     1226                $redirect_url = false;
     1227           
     1228            // ...and any single anything else...
     1229            //
     1230            // @todo - Find a more accurate way to disable paged canonicals for
     1231            //          paged shortcode usage within other posts.
     1232            } elseif ( is_page() || is_singular() ) {
    12261233                $redirect_url = false;
    12271234            }
Note: See TracChangeset for help on using the changeset viewer.