niravdave
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-admin redirecting. pls help!any one who can help me here??
Forum: Plugins
In reply to: I am stuck with categories, Need your help. Urgent!sorry, i m not a php expert so do not follow what you are saying.
Forum: Plugins
In reply to: I am stuck with categories, Need your help. Urgent!ok MichaelH
As per your suggestion now i m using the code below. But Did not help. I hope i have been clear on explaining on what I am trying to acheive here.
In simple words.
Category 2 and 37: i want to display 20 posts and
Other Catgories: I want to display 6 posts.<?php if ( is_category(2) || is_category(37) )
{
include(TEMPLATEPATH . ‘/category1.php’);
$showposts=20;
}
else
{
include(TEMPLATEPATH . ‘/archive.php’);
$showposts=6;
}
?>Forum: Plugins
In reply to: I am stuck with categories, Need your help. Urgent!Hey MichaelH,
Thanks for your response. I tried to use this code on category.php but that did not change anything. I did refer to the Category template link earlier, but have no idea how do i exactly achieve this.
cheers!
`<?php if ( is_category(array(2,37)) )
{
include(TEMPLATEPATH . ‘/category1.php’);
$showposts=10;
}
else
{
include(TEMPLATEPATH . ‘/archive.php’);
$showposts=6;
}
?>Forum: Plugins
In reply to: [Plugin: Contact Form 7] File uploadHi Takayukister,
any plans for including this.