strange layout of template
-
Hi im getting this on my template:
https://www.radioreformaseoye.com/2014/series/testthis is my code:
` <?php get_header(); ?>
<div class=”content-wrap”>
<div class=”content”>
<?php tie_breadcrumbs() ?><div id=”content” class=”podcast_archive”>
<div class=”podcast_full”>
<?php if ( have_posts() ) : ?>
<header>
<h1><?php _e( ‘El Jurado del Pueblo’ , ‘ss-podcasting’ ); ?></h1>
</header><?php
$feed_url = trailingslashit( home_url() ) . ‘?feed=podcast’;
$custom_feed_url = get_option(‘ss_podcasting_feed_url’);
if( $custom_feed_url && strlen( $custom_feed_url ) > 0 && $custom_feed_url != ” ) {
$feed_url = $custom_feed_url;
}
$itunes_url = str_replace( array( ‘http:’ , ‘https:’ ) , ‘itpc:’ , $feed_url );
?><section class=”podcast_subscribe”>
<strong>Suscribirse:<strong/> <a>” title=”<?php _e( ‘Standard podcast RSS feed’ , ‘ss-podcasting’ ); ?>”>RSS</a> | <a>” title=”<?php _e( ‘iTunes podcast feed’ , ‘ss-podcasting’ ); ?>”>iTunes</a>
</section><section>
<?php
/* Start the Loop */
while ( have_posts() ) : the_post(); ?><?php
$terms = wp_get_post_terms( get_the_ID() , ‘series’ );
foreach( $terms as $term ) {
$series_id = $term->term_id;
$series = $term->name;
break;
}
?><article class=”podcast_episode”>
<?php if( has_post_thumbnail() ) { ?>
<?php $img = wp_get_attachment_image_src( get_post_thumbnail_id() ); ?>
<a>” title=”<?php the_title(); ?>”>
<?php the_post_thumbnail( ‘podcast-thumbnail’ , array( ‘class’ => ‘podcast_image’ , ‘alt’ => get_the_title() , ‘title’ => get_the_title() ) ); ?>
</a>
<?php } ?><h3>
<a>” title=”<?php the_title(); ?>”><?php the_title(); ?></a>
<div class=”podcast_meta”><?php echo $series; ?><aside></div>
</h3>
<div id=”audio”>
<?php global $ss_podcasting;
$enclosure = $ss_podcasting->get_enclosure( get_the_ID() );
if( $enclosure ) {
$audio_player = $ss_podcasting->audio_player( $enclosure );
echo $audio_player;
} ?>
</div><!– audio –>
<span class=”audiometa”>
Tama?o: <?php echo get_post_meta(get_the_ID(), ‘filesize’, true) ?>
</span>
</div><!– podcast –></article>
<?php
endwhile;
?></section>
<?php endif; ?>
<div class=”podcast_clear”></div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?></strong>`https://www.ads-software.com/plugins/seriously-simple-podcasting/
- The topic ‘strange layout of template’ is closed to new replies.