groups

name language licence
WORDPRESS BLOG URL PHP BSD
WORDPRESS INCLUDE FILE PHP BSD
WORDPRESS GET TITLE OR ALT. TITLE PHP BSD
Wordpress Categories Nav PHP BSD
Display a Pages SubMenu in your Sidebar PHP BSD
comments-popup PHP GPL 2
Display WordPress Tags PHP BSD
Display Admin Section PHP BSD

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



language: PHP
licence: GPL 2

comments-popup

options: view full snippetsend to code collector
<?php
/* Don't remove these lines. */
add_filter('comment_text', 'popuplinks');
while ( have_posts()) : the_post();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
     <title><?php echo get_option('blogname'); ?> - Comments on <?php the_title(); ?></title>

	<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
	<style type="text/css" media="screen">
		@import url( <?php bloginfo('stylesheet_url'); ?> );
		body { margin: 3px; }
	</style>
	
(Continues...)