define ( 'CATEGORY', 'all' ); // What category do you want to show ( all , male, female, tranny)
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Links
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
switch ( CATEGORY ) {
case 'all':
$category_string = '&categories[]=female&categories[]=male&categories[]=transsexual';
break;
case 'female':
$category_string = '&categories[]=female';
break;
case 'male':
$category_string = '&categories[]=male';
break;
case 'tranny':
$category_string = '&categories[]=transsexual';
break;
}
define ( 'XML_FILE', 'You are only allowed to post URLs to other sites after you have made 30 posts or more.' . $category_string );
|