groups

name language licence
index PHP GPL 2
slider CSS GPL 2
home PHP GPL 2
page PHP GPL 2
archive PHP GPL 2
Display PHP on a Single Page PHP BSD
brokenbeats Other Other
pulsewidthmod HTML Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 >



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...)