• I’m using this plugin with the Hybrid theme, and Hybrid has a custom breadcrumb feature that creates an appropriate breadcrumb for each page/post. It does this by examining the last query, which usually was for the post/page.

    However, if Sideblogging runs before the breadcrumbs, the last query was for the Asides, so the breadcrumbs show the crumbs to the aside instead of the post/page.

    I’m not an expert of the WordPress back end, but would it be possible to cache the last query object, do the Aside query, and then revert to the previous query?

    http://wordpress.org/extend/plugins/sideblogging/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author cedbv

    (@cedbv)

    I just tried the Hybrid theme with Sideblogging and everything works fine even if I put the breadcrumb in the footer and sideblogging before.
    Do you have the latest version of Hybrid ?

    Anyway Sideblogging doesn’t use the main query_post but a custom one, probably because I had similars issues than yours before.

    However you can put use the function :
    wp_reset_query();
    just before the breadcrumb. That will reset the Query Post to the default one. That should fix your problem.

    Thread Starter drwelby

    (@drwelby)

    I have the latest version of Hybrid, and working with the theme developer we came to the same solution of using wp_reset_query().

    Thanks for looking into it!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Plugin: Sideblogging] Cache previous queries’ is closed to new replies.