• Hi there,

    I’m not very familiar with PHP but I managed to insert the co-author tag in Hot Topix’s single.php :

    <h1 class="headline"><?php the_title(); ?></h1>
    <span class="post-byline">
    <?php _e( 'By', 'mvp-text' ); ?>
    <?php if ( function_exists('coauthors_posts_links')){coauthors_posts_links();} else {the_author_posts_link(); } ?>
    <?php _e( 'on', 'mvp-text' ); ?>

    It works just fine and both authors’ names and links are displayed under the article’s title.

    My problem : how do I display the authors’ bio under the article ?
    The code is here :

    <?php $author = get_option('ht_author_box'); if ($author == "true") { ?>
    <div id="author-info">
    <?php echo get_avatar( get_the_author_meta('email'), '60' ); ?>
    <div id="author-text">
    <?php the_author_meta('description'); ?>
    </div><!--author-text-->
    </div><!--author-info-->
    <?php } ?>

    So how can I transform the <?php the_author_meta(‘description’); ?> for co-authors plus ????

    Please be clear and give me exact location and code to add if possible, I’ll be most grateful :)))

    Thanks a lot

    http://wordpress.org/plugins/co-authors-plus/

Viewing 1 replies (of 1 total)
  • Can you help me out. I’m using Hot Topix Theme on one of my website and on the category pages the content is not appearing as the blog roll. Just like it was displayed on the demo. Everything works great on the Home Page but, category pages are empty only the featured post is filled with post.

    Help me out here

    Thanks a lot

Viewing 1 replies (of 1 total)
  • The topic ‘(urgent) the_author_meta('description') in Hot Topix WP theme’ is closed to new replies.