groups

name language licence
Adding a Mini-Loop PHP Other
Untitled Snippet PHP Other
translations of CSS3 selectors for SocialMe PHP Other
Template Tags/wp list bookmarks PHP Other
Unique Category template PHP Other
Display Google Ad after the first post PHP Other
Custom Fields PHP Other
Dynamic Content Dynamic Content PHP Other

< 1 2 3 >



language: PHP
licence: Other

Untitled Snippet

options: view full snippetsend to code collector
<?php
$homepage = get_option('siteurl')."/home/"; global $wp; $wp_received_argument = false; foreach ($wp->query_vars as $k=>$v) if ($v) $wp_received_argument = true;

if ($wp_received_argument) require(TEMPLATEPATH . "/index.php"); else { wp_redirect($homepage); exit(); }

?>
	
(Continues...)