• Resolved hjoy1974

    (@hjoy1974)


    Hi there..

    I need to have Podcasts to author page..
    Do You have any idea of the Code if Posts you can have as following:

    <?php  if ( have_posts() ) : while ( have_posts() ) : the_post(); /* Displays the most recent posts by that author. Note that this does not display custom content types */ ?>
                            <?php static $count = 0;
                            if ($count == "15") // Number of posts to display
                    { break; }
                            else { ?>
                                    <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
                                    <?php if ( has_post_thumbnail() ) { /* loades the post's featured thumbnail, requires WordPress 3.0+ */ echo '<div class="featured-thumbnail">'; the_post_thumbnail(); echo '</div>'; } ?>
                                    <div class="post-excerpt" style="padding-bottom:35px;">
                                    <p>
                                            <?php the_excerpt(); /* the excerpt is loaded to avoid duplicate content */ ?>
                                    </p>
                                    </div><!--.postContent-->
                            <?php $count++; } ?>
                    <?php endwhile; else: ?>

    https://www.ads-software.com/plugins/seriously-simple-podcasting/

Viewing 1 replies (of 1 total)
  • Plugin Contributor Hugh Lashbrooke

    (@hlashbrooke)

    Please update to the latest release (v1.8). With that you will be able to specify that you would like to use the post post type for podcasting and then all episodes will show up with your other blog posts everywhere on your site, including the author pages.

Viewing 1 replies (of 1 total)
  • The topic ‘Podcasts to author page’ is closed to new replies.