Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Atahualpa 3 Wordpress theme (http://forum.bytesforall.com/forumdisplay.php?f=2)
-   -   Add something over/before the posts on tag/cat pages (http://forum.bytesforall.com/showthread.php?t=511)

chris Feb 23, 2009 09:30 AM

Add something over/before the posts on tag/cat pages
 
I would like to add a piece of code over/before the posts on tag and categorie pages.

it is to display a categories or a tags geolocations of postings for the plugin geo-mashup.

any idea to get that piece of code over the first posting of that tag/cat page?

Flynn Feb 23, 2009 03:13 PM

You could put, into index.php, right after
PHP Code:

<?php get_header(); ?>

this:
PHP Code:

<?php if ( is_tag() OR is_category() ) { ?>
YOUR CODE
<?php ?>

To have it only on the first page of tag/cateory lists
PHP Code:

<?php if ( (is_tag() OR is_category()) AND !is_paged() ) { ?>
YOUR CODE
<?php ?>



All times are GMT -6. The time now is 11:28 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.