开发者

wordpress: problem with adding another rule with wp_rewrite

开发者 https://www.devze.com 2023-01-27 07:48 出处:网络
i set my wordpress permlink to /%category%/%postname% now i\'m using Nextgen Gallery so when i have a gallery in a page it will be something like /cat/page?gallery=10 i want to make it something like

i set my wordpress permlink to /%category%/%postname% now i'm using Nextgen Gallery so when i have a gallery in a page it will be something like /cat/page?gallery=10 i want to make it something like cat/page/gallery id/ i tried alot with wp_rewrite ... but no luck ... any help ?

this is what i'm testing on .. it's not my code it's provided fr开发者_C百科om wordpress ... i will put everything in its place when i found the way ... so don't worry i will not flushRules on init ... thanks a lot

add_filter('rewrite_rules_array','wp_insertMyRewriteRules');
add_filter('query_vars','wp_insertMyRewriteQueryVars');
add_filter('init','flushRules');

// Remember to flush_rules() when adding rules
function flushRules(){
    global $wp_rewrite;
    $wp_rewrite->flush_rules();
}

// Adding a new rule
function wp_insertMyRewriteRules($rules)
{
    $newrules = array();

    //i don't know what should i put here
    $newrules[''] = '';
    return $newrules + $rules;
    //
}

// Adding the id var so that WP recognizes it
function wp_insertMyRewriteQueryVars($vars)
{
    array_push($vars, 'id');
    return $vars;
}


Hope this 2 URL points you on the right direction:

  • http://code.google.com/p/nextgen-gallery/issues/detail?id=223
  • http://wordpress.org/support/topic/plugin-nextgen-gallery-permalink

Perhaps a Google keyword search will save you a lot of time... :)

Regards.

0

精彩评论

暂无评论...
验证码 换一张
取 消