Feture Request
-
In ACT-displayer.php
line 252if ($author_posts) { echo '<ul>'; $i = 0; foreach ($author_posts as $author_post) { /* excluded categories */ if (has_category(explode(',', $atts['exclude']), $author_post->ID)) : continue; endif; $postdate = date_i18n( get_option( 'date_format' ), strtotime($author_post->post_date)).' - '; echo '<li>'; echo ($atts['postdate'] ? $postdate : ''). '<a href="' . get_permalink( $author_post->ID ) . '">'.$author_post->post_title.'</a>'; $categories = get_the_category( $author_post->ID ); $list_cats =null; foreach ($categories as $cat) : $list_cats .= $cat->name.", "; endforeach; $list_cats = substr($list_cats, 0, -2); echo "<p>" .the_tags(). "</p>"; echo '</li>'; $i++; if ($atts['postsperauthor'] > -1) : if ($i >= $atts['postsperauthor']) : break; endif; endif; } }
at the
echo "<p>" .the_tags(). "</p>";
I am trying to get the posts tags to display but cant seem to pull and display the tag data correctly.Any ideas on how to display the posts tags after the post title?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Feture Request’ is closed to new replies.