..uncommented related posts and comics so that sites do not continue to be b0rked from the functions/displayblogpost.php and functions/displaycomicpost.php calls those functions.

Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
Philip M. Hofer (Frumph) 2009-12-20 00:02:13 -08:00
parent 12ffca740a
commit 2cc315dcdc
2 changed files with 13 additions and 15 deletions

View File

@ -6,7 +6,7 @@
* Usage: [related_comics]
*
*/
/*
function related_comics_shortcode( $atts = '' ) {
extract(shortcode_atts(array(
'limit' => '5',
@ -66,7 +66,7 @@ function related_comics_shortcode( $atts = '' ) {
}
return;
}
add_shortcode('related_comics', 'related_comics_shortcode');
// add_shortcode('related_comics', 'related_comics_shortcode');
?>
*/

View File

@ -6,7 +6,6 @@
* Usage: [related_posts]
*
*/
/*
function related_posts_shortcode( $atts = '' ) {
extract(shortcode_atts(array(
@ -64,13 +63,12 @@ function related_posts_shortcode( $atts = '' ) {
$retval .= '
</li></ul>';
$retval .= '
</div>';
</div>';
return $retval;
}
return;
}
add_shortcode('related_posts', 'related_posts_shortcode');
// add_shortcode('related_posts', 'related_posts_shortcode');
?>
*/