[wp-hackers] Integrate URLs from custom plugins?

Alex Günsche ag.ml2007 at zirona.com
Fri Jun 1 23:07:46 GMT 2007


On Fri, 2007-06-01 at 18:57 -0400, Boris Anthony wrote:
> two possible uses I am looking at:
> /category/foobar/map -> full window map of posts pinned to places
> /category/foobar/stats -> posting stats thingy

Maybe you could simply omit the WP loop for that special purpose in your
category.php (or index.php if you don't have a category.php):

if ( is_category('map') )
{
	map stuff;
}
elseif ( is_category('stats') ) 
{
	stats stuff;
}
else
{
	Da Loop;
}

Alex

-- 
Alex Günsche, Zirona OpenSource-Consulting
http://www.zirona.com/ | Hilfe für das HQ AC: http://www.prohq.de
PubKey for this address: http://www.zirona.com/misc/ag.ml2007.asc



More information about the wp-hackers mailing list