Category View with rewrite url
Is it possible to send the parameters in the category link like site.com/category/slugname/2011/20/10
and rewrite the url as
$wp_rewrite->rules = array_merge( array('category/past-issues/issues/(.+)/(.+)/(.+)/' =>
'category/past-issues/?pyear='.$wp_rewrite->preg_index(1).'&pmonth='.
$wp_rewrite->preg_index(2).'&pday='.$wp_rewrite->preg_index(3)), $wp_rewrite->rules );
I am getting page not found error
Is it possible to send the parameters in the category link like site.com/category/slugname/2011/20/10
and rewrite the url as
$wp_rewrite->rules = array_merge( array('category/past-issues/issues/(.+)/(.+)/(.+)/' =>
'category/past-issues/?pyear='.$wp_rewrite->preg_index(1).'&pmonth='.
$wp_rewrite->preg_index(2).'&pday='.$wp_rewrite->preg_index(3)), $wp_rewrite->rules );
I am getting page not found error
No comments:
Post a Comment