properly fix shortcode calling issues

This commit is contained in:
John Bintz 2009-12-20 09:21:55 -05:00
parent e33cd2d2fb
commit dbdfcf055c
5 changed files with 29 additions and 28 deletions

View File

@ -5,7 +5,7 @@ require_once('ComicPressStoryline.inc');
class ComicPressRelatedPosts {
var $related_categories;
function shortcode_related_comics($attrs = '') {
function display_related_comics($attrs = '') {
$rp = new ComicPressRelatedPosts();
return $rp->_handle_shortcode(
extract(ComicPressRelatedPosts::_handle_shortcode_attrs($attrs)),
@ -13,7 +13,7 @@ class ComicPressRelatedPosts {
);
}
function shortcode_related_posts($attrs = '') {
function display_related_posts($attrs = '') {
$rp = new ComicPressRelatedPosts();
return $rp->_handle_shortcode(
extract(ComicPressRelatedPosts::_handle_shortcode_attrs($attrs)),
@ -121,6 +121,6 @@ class ComicPressRelatedPosts {
// @codeCoverageIgnoreEnd
}
add_shortcode('related_posts', array('ComicPressRelatedPosts', 'shortcode_related_posts'));
add_shortcode('related_comics', array('ComicPressRelatedPosts', 'shortcode_related_comics'));
add_shortcode('related_posts', array('ComicPressRelatedPosts', 'display_related_posts'));
add_shortcode('related_comics', array('ComicPressRelatedPosts', 'display_related_comics'));

View File

@ -2,11 +2,11 @@
/**
* Display post
* Displays the post info
*
*
*
*
*/
function display_blog_post() {
function display_blog_post() {
global $post, $wp_query, $authordata, $comicpress_options; ?>
<?php if (is_single()) { ?>
<div class="blognav">
@ -59,19 +59,19 @@ function display_blog_post() {
<?php the_tags(__('&#9492; Tags: ','comicpress'), ', ', '<br />'); ?>
</div>
<?php } ?>
<?php
if ('open' == $post->comment_status) {
<?php
if ('open' == $post->comment_status) {
if (comicpress_check_child_file('partials/commentlink') == false && !(is_single())) { ?>
<div class="comment-link"><?php comments_popup_link('<span class="comment-balloon comment-balloon-empty">&nbsp;</span> '.__('Comments ','comicpress'), '<span class="comment-balloon">1</span> '.__('Comment ','comicpress'), '<span class="comment-balloon">%</span> '.__('Comments ','comicpress')); ?></div>
<?php }
}
?>
<div class="clear"></div>
<?php if ($comicpress_options['enable_related_posts']) echo related_posts_shortcode(); ?>
<?php if ($comicpress_options['enable_related_posts']) echo ComicPressRelatedPosts::display_related_posts(); ?>
</div>
</div>
<div class="post-foot"></div>
</div>
<?php
<?php
}
?>
?>

View File

@ -2,11 +2,11 @@
/**
* Display comic post
* Displays the post info for the comic
*
*
*
*
*/
function display_comic_post() {
function display_comic_post() {
global $post, $wp_query, $authordata, $comicpress_options;
$first_comic = get_first_comic_permalink(); $last_comic = get_last_comic_permalink();
if (!$comicpress_options['disable_default_comic_nav']) { ?>
@ -24,7 +24,7 @@ function display_comic_post() {
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
</div>
<?php }
} ?>
} ?>
<div class="post-comic-head"></div>
<div class="post-comic" id="post-comic-<?php the_ID() ?>">
<div class="post-comic-info">
@ -62,19 +62,19 @@ function display_comic_post() {
<?php the_tags(__('&#9492; Tags: ','comicpress'), ', ', '<br />'); ?>
</div>
<?php } ?>
<?php
if ('open' == $post->comment_status && !$comicpress_options['static_blog'] && !(is_single())) {
<?php
if ('open' == $post->comment_status && !$comicpress_options['static_blog'] && !(is_single())) {
if (comicpress_check_child_file('partials/commentlink') == false) { ?>
<div class="comment-link"><?php comments_popup_link('<span class="comment-balloon comment-balloon-empty">&nbsp;</span> '.__('Comments ','comicpress'), '<span class="comment-balloon">1</span> '.__('Comment ','comicpress'), '<span class="comment-balloon">%</span> '.__('Comments ','comicpress')); ?></div>
<?php }
}
?>
<div class="clear"></div>
<?php if ($comicpress_options['enable_related_comics']) echo related_comics_shortcode(); ?>
<?php if ($comicpress_options['enable_related_comics']) echo ComicPressRelatedPosts::display_related_comics(); ?>
</div>
</div>
<div class="post-comic-foot"></div>
</div>
<?php
<?php
}
?>
?>

View File

@ -6,7 +6,7 @@
* Usage: [related_comics]
*
*/
/*
function related_comics_shortcode( $atts = '' ) {
extract(shortcode_atts(array(
'limit' => '5',
@ -70,3 +70,4 @@ function related_comics_shortcode( $atts = '' ) {
?>
*/

View File

@ -6,14 +6,14 @@
* Usage: [related_posts]
*
*/
/*
function related_posts_shortcode( $atts = '' ) {
extract(shortcode_atts(array(
'limit' => '5',
), $atts));
global $wpdb, $post, $table_prefix, $category_tree;
if ($post->ID) {
// Get tags
$tags = wp_get_post_tags($post->ID);
@ -32,9 +32,9 @@ function related_posts_shortcode( $atts = '' ) {
GROUP BY tr.object_id
ORDER BY count DESC, p.post_date_gmt DESC
LIMIT $limit;";
$related = $wpdb->get_results($q);
if ( $related ) {
$retval = '
<div class="related_posts">
@ -71,4 +71,4 @@ function related_posts_shortcode( $atts = '' ) {
// add_shortcode('related_posts', 'related_posts_shortcode');
?>
?>*/