groups

name language licence
archive PHP GPL 2
Display PHP on a Single Page PHP BSD
ALTERNATING ROWS (WORDPRESS VERSION) PHP BSD
WORDPRESS (WP) CUSTOM FIELDS PHP BSD
WORDPRESS STATIC HTML TEMPLATE PHP BSD
gallery PHP GPL 2
Display In 2-Column Table PHP BSD
WordPress custom post listing PHP BSD

< 1 2 3 4 5 6 7 8 9 10 11 12 >



language: PHP
licence: BSD

Display PHP on a Single Page

options: view full snippetsend to code collector

Display PHP on a Single Page

Allows you to display plugins and such on a single page (replace home with the page you want it to only appear on):
<?php if ( is_home() ) { include ('file.php'); } ?>


Display an External RSS Feed

<?php include_once(ABSPATH.WPINC.'/rss.php');
wp_rss('http://wpforums.com/external.php?type=RSS2', 5); ?>

	
(Continues...)