Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created a short code which is a custom query and does not process any content ($content). It only takes parameters [Portfolio1 category="Blog" posts="8"] (category which posts are drawn from and number of posts) and output some styled content based on that. The problem I'm having is that for whatever reason I cannot understand, P tags are being inserted into this styled content (can't understand how either) and messing up my layout. This seems to happen on a hosted WordPress (3.4) but not on my local WordPress (also 34) which makes more confusing.

I've tried a host of common solutions to the short code tag problem (I've even removed the wpautop filter remove_filter( 'the_content', 'wpautop' ); but nothing seems to work!

Here's my full code:

function nomade_portfolio_1( $atts, $content = null ) {

extract(shortcode_atts(array(
  "category" => '',
  "title" => '',
  "posts" => ''
), $atts));

$path = get_bloginfo('template_directory');

$temp_before = '<div class="row">';
$temp_after = '</div>';

query_posts(array(
    'showposts' => $posts,
    'orderby' => 'asc',
    'category_name' => $category
));

$output = '';
$temp_title = '';
$temp_link = '';
$temp_content = '';
$temp_time = '';
$temp_categories = '';
$temp_author = '';
$temp_thumb = '';

if (have_posts()) : while (have_posts()) : the_post();

$temp_title = get_the_title($post->ID);
$temp_content = get_the_content($post->ID);
$temp_link = get_permalink($post->ID);
$temp_excerpt = get_the_excerpt($post->ID);
$temp_time = get_the_date($post->ID, 'Y-m-d');
$temp_categories = get_the_category($post->ID, ', ');
$temp_author = get_the_author($post->ID);
$temp_thumb = get_the_post_thumbnail( $post->ID, array(600,336) );

$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), ‘full’ );

$output3 .="<div class='port_4column pl10'><a href='$temp_link'><div class='mask_call'><div class='mask'></div><img class='border_grey' src='" . $path . "/library/timthumb.php?src=" . $image[0] . "&w=219&h=158&zc=1&q=100' alt='caption 1' data-caption='#htmlCaption1' /> <span class='pic_frame_1'><span class='date'>" . $temp_time . "</span></span></div></a><h4>" . $temp_title . "</h4></div>";

endwhile; endif;

wp_reset_query();
return $temp_before . $output3 . $temp_after;

}
add_shortcode("Portfolio1", "nomade_portfolio_1");

Thanks for the help!

share|improve this question
For those interested, the way I fix (maybe hack might be a better word for it) was adding a div tag around the element that was creating the p tags. This solved it for me. Never mind semantic code... ;) – WagnerMatosUK Jul 17 '12 at 15:57

closed as off topic by Will Sep 28 '12 at 2:22

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.