Jump to content
  • 0

Новая страница для модуля


Cooooop
 Share

Question

Здравствуйте, допустим я хочу создать новый модуль или плагин, не принципиально, страница модуля/плагина должна быть доступна по адресу "mysite.ru/modulegallery/" или же "mysite.ru/modulegallery/1" для других страниц модуля, так как можно создать такие ссылки? вот нашёл кое какой код:


add_action('generate_rewrite_rules', 'my_add_rewrite_rules');
function my_add_rewrite_rules( $wp_rewrite )
{ $new_rules = array(
'gallery/(.+)' => 'index.php?gallery=' .
$wp_rewrite->preg_index(1) );
$wp_rewrite->rules = $new_rules + $wp_rewrite->rules;
}

add_filter( 'query_vars','my_insert_query_vars' );
function my_insert_query_vars( $vars )
{ array_push($vars, 'gallery');
return $vars;
}

add_filter('parse_query','my_parseQuery');
function my_parseQuery() {
if (get_query_var('gallery'))
add_action('template_redirect', 'my_template');
}

function my_template()
{ include(TEMPLATEPATH . '/gallery.php');
exit;

}

У меня же почему то такой способ не работает, ошибка 404. :huh:

Так как же можно реализовать данную идею?

P.S. Нужен способ реализации через функции. Заранее спасибо

Edited by Cooooop
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

А с чего вы взяли что модуль/плагин должен быть доступен по адресу "mysite.ru/modulegallery/" или же "mysite.ru/modulegallery/1"? Это же не отдельная страница, рубрика или запись. Вы хоть страницу gallery.php для этого создали?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy