Hey guys, I'm having some trouble coding a themes shortcode. I want the code to display a div with a view counter function, and then a link with the shotcodes content as the url.

The view_count(); function works fine when called inside theme files, and I actually managed to make it show, but then it displayed before the_content(); of the post (the gray bar), when I wanted it within content under an element.

(1) Here's what I've got:

function video_block( $atts, $content = null ) { 
    return '<div class="video-block"><span class="ViewCount"><?php the_views(); ?></span> <a class="dl-source" href="' . $content . '">Link</a></div>';
}

(2) Here's the code that displays both on top of page:

function video_block( $atts, $content = null ) { ?>
    <div class="video-block"><span class="ViewCount"><?php the_views(); ?></span> <a class="dl-source" href="<?php echo $content; ?>">Link</a></div>
<?php }

(3) This code displays the views above content, and the link in the correct place:

function video_block( $atts, $content = null ) {
    $views = the_views();
    return '<div class="video-block"><span class="ViewCount"><?php $views; ?></span> <a class="dl-source" href="<?php echo $content; ?>">Link</a></div>';
}

I read somewhere in the Wordpress forums that you should return (instead of echo) values within functions, but that breaks it, displaying the view count, skips the html and spits out the $content.

Here is a link to the page in question: http://nvrt.me/4Qf1 (currently using code from block #2)

I'm running out of midnight oil. I would really appreciate it if someone could help me out.


EDIT:

Here is the code for the_views(); function. I can see that it's echoed, but when changed to return, it doesn't display it at all.

### Function: Display The Post Views
function the_views($display = true, $prefix = '', $postfix = '', $always = false) {
    $post_views = intval(post_custom('views'));
    $views_options = get_option('views_options');
    if ($always || should_views_be_displayed($views_options)) {
        $output = $prefix.str_replace('%VIEW_COUNT%', number_format_i18n($post_views), $views_options['template']).$postfix;
        if($display) {
            echo apply_filters('the_views', $output);
        } else {
            return apply_filters('the_views', $output);
        }
    }
    elseif (!$display) {
        return '';
    }
}
link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Even though it is a recommended practice in Wordpress to have functions that return values, it is not always possible, especially when you are calling another function that writes it's output directly to the stream.

When the component writes it's output directly to the stream you need to code to accommodate that behavior unless you want to rewrite the who component (I wouldn't do that ;-) ).

In this instance the the_views() function actually offers you both options. If you look at the $display parameter and follow the code this function can behave both ways. If $display is set to True (it's default) it will echo the results of the function. If $display is set to False it will return the output.

So you have two options, both of which should work:

Option 1, Return a value

Note that when I call the_views() I pass it a false parameter like this: the_views(false)

<?php

function video_block( $atts, $content = null ) { 
  return "<div class=\"video-block\"><span class=\"ViewCount\">" . the_views(false) .  "</span><a class=\"dl-source\" href=\"$content\">Link</a></div>";
}

?>

*Option 2: Echo your output *

Note that when I call the the_views() there are no parameters passed to it.

<?php

function video_block( $atts, $content = null ) { 
  echo "<div class=\"video-block\"><span class=\"ViewCount\">";
  the_views();
  echo "</span><a class=\"dl-source\" href=\"$content\">Link</a></div>";
}

?>

Oh, also, don't forget to escape your quotes when you are returning a string.

link|improve this answer
Looking at your example code, I can't figure out how i would define $videoBlock as the function, and then echo it within the function? The problem is trying to call the_views(); inside of the return. – Michal Kopanski Feb 7 '11 at 6:54
I have clarified the code a bit. Two things you need to note here, the_views() need to return a string, not emit code and you need to append the the sections of the string together in video_block, rather than excape back to html with <?php and ?>. – Steve Massing Feb 7 '11 at 7:00
Unfortunately your example doesn't work. The quotation mark escapes break the html and display code like this: <div class="\&quot;video-block\&quot;">. Why would I need to define the_views(); as a function again, when it has already been defined by its plugin, and is displaying and working correctly (just in the wrong place)? – Michal Kopanski Feb 7 '11 at 7:08
You don't need to redefine the_views(), just make sure it returns a value as string rather than emits code directly. I just didn't know where it came from. – Steve Massing Feb 7 '11 at 7:15
So it sounds like I'm going to have to mess with the plugin code. Thanks for all your help, and the useful insight. :) – Michal Kopanski Feb 8 '11 at 20:55
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.