Hopefully the title isn't confusing. I have code I am using to display posts of only a specific type in my template (all the podpress posts). My code is:
<ul>
<?php
global $post;
$args = array( 'category' => 32 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<li>
<article>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>">Read More</a>
</article>
</li>
<?php endforeach; ?>
</ul>
When I do a search on my site the player shows up and search.php uses the_excerpt() so I'm not sure why that isn't working for my page. Any help on how to fix my code would be greatly appreciated.
To clarify: the content of the post does show up, just not the player.