groups

name language licence
Scrobbler PHP BSD
footer PHP GPL 2
Display WordPress Tags Cloud PHP BSD
functions PHP GPL 2
header PHP GPL 2
single PHP GPL 2
comments PHP GPL 2
style CSS GPL 2

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



language: PHP
licence: GPL 2

comments

options: view full snippetsend to code collector
<?php
/**
 * @package WordPress
 * @subpackage Default_Theme
 */

// Do not delete these lines
	if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
		die ('Please do not load this page directly. Thanks!');

	if ( post_password_required() ) { ?>
		<p class="nocomments">This post is password protected. Enter the password to view comments.</p>
	<?php
		return;
	}
	
(Continues...)