All pastes #2057665 Raw Edit

Unnamed

public text v1 · immutable
#2057665 ·published 2011-05-13 01:23 UTC
rendered paste body
<?php
/**
 * The template for displaying the footer.
 *
 * @package WordPress
 */
?>

		<!-- Begin footer -->
		<div id="footer">
			<ul class="sidebar_widget">
				<?php dynamic_sidebar('Footer Sidebar'); ?>
			</ul>
			
			<br class="clear"/>
		
			<div id="copyright">
				<?php
					/**
					 * Get footer text
					 */
	
					$pp_footer_text = get_option('pp_footer_text');
	
					if(empty($pp_footer_text))
					{
						$pp_footer_text = 'Copyright �©. Powered By <a href="">Wordpress</a> | Designed by <a href="http://http://www.adultplaythings.com/pages/Basix-Dildo-Collection.html">Basix Dildos</a>';
					}
					
					echo $pp_footer_text;
				?>
			</div>
			
		</div>
		<!-- End footer -->
		
	</div>
	<!-- End template wrapper -->

<?php
		/**
    	*	Setup Google Analyric Code
    	**/
    	include (TEMPLATEPATH . "/google-analytic.php");
?>

<?php
	/* Always have wp_footer() just before the closing </body>
	 * tag of your theme, or you will break many plugins, which
	 * generally use this hook to reference JavaScript files.
	 */

	wp_footer();
?>
</body>
</html>
<?