Title: inform's Replies | WordPress.org

---

# inform

  [  ](https://wordpress.org/support/users/inform/)

 *   [Profile](https://wordpress.org/support/users/inform/)
 *   [Topics Started](https://wordpress.org/support/users/inform/topics/)
 *   [Replies Created](https://wordpress.org/support/users/inform/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/inform/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/inform/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/inform/engagements/)
 *   [Favorites](https://wordpress.org/support/users/inform/favorites/)

 Search replies:

## Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to get the name of posting authors to appear on the blog?](https://wordpress.org/support/topic/how-to-get-the-name-of-posting-authors-to-appear-on-the-blog/)
 *  [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 9 months ago](https://wordpress.org/support/topic/how-to-get-the-name-of-posting-authors-to-appear-on-the-blog/#post-838301)
 * **@ hungnguyen84**
 * This should display your author:
    `<?php the_author(); ?>`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Tag list with number of post related to tags](https://wordpress.org/support/topic/tag-list-with-number-of-post-related-to-tags/)
 *  [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 9 months ago](https://wordpress.org/support/topic/tag-list-with-number-of-post-related-to-tags/#post-711783)
 * @ zbrix
 * See code below:
    `'(' . $tag->count . ')'`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Tag list with number of post related to tags](https://wordpress.org/support/topic/tag-list-with-number-of-post-related-to-tags/)
 *  [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 9 months ago](https://wordpress.org/support/topic/tag-list-with-number-of-post-related-to-tags/#post-711771)
 * Nevermind. Figured it out.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Tag list with number of post related to tags](https://wordpress.org/support/topic/tag-list-with-number-of-post-related-to-tags/)
 *  [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 9 months ago](https://wordpress.org/support/topic/tag-list-with-number-of-post-related-to-tags/#post-711770)
 * Ott042,
 * This is great.
 * Is there a way to have the numbers display in () as I have it setup? Currently
   the numbers are running into the tag name.
 * You can see the action here:
    [http://www.inform-ventures.com/blog/](http://www.inform-ventures.com/blog/)
 * This is the code I am using from above:
 *     ```
       <?php $tags = get_tags(array(
       'orderby' => 'count',
       'order' => 'DESC',
       'number' => 30,
       ) );
       foreach ($tags as $tag) {
       echo '<li><a href="' . get_tag_link($tag->term_id) . '" rel="tag">' . $tag->name . $tag->count . '</a></li>';}; ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [New MODERN theme KATEGORIKA 2.0 – super clean – minimal](https://wordpress.org/support/topic/new-modern-theme-kategorika-20-super-clean-minimal/)
 *  [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 10 months ago](https://wordpress.org/support/topic/new-modern-theme-kategorika-20-super-clean-minimal/#post-780139)
 * Looks great – when is this being released?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Hemingway Theme – Previous Next links](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/)
 *  Thread Starter [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/#post-791325)
 * There are 26 posts.
 * Thanks for the help.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Hemingway Theme – Previous Next links](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/)
 *  Thread Starter [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/#post-791321)
 * Changed it to month and name and problem still is still there.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Hemingway Theme – Previous Next links](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/)
 *  Thread Starter [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/#post-791312)
 * Same result:
 * I am editiing code with “Main Index Template” index.php
 *     ```
       <?php get_header(); ?>
   
       	<div id="primary" class="onecol-stories">
       		<div class="inside">
       			<?php
       				// Here is the call to only make two posts show up on the homepage REGARDLESS of your options in the control panel
       				query_posts('showposts=5');
       			?>
       			<?php if (have_posts()) : ?>
       				<?php $first = true; ?>
       				<?php while (have_posts()) : the_post(); ?>
       					<div class="story<?php if($first == true) echo " first" ?>">
       						<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
       						<?php $hemingway->excerpt() ?>
       						<div class="details">
       							<?= _('Posted at') ?> <?php the_time('ga \o\n ' . $hemingway->date_format(true) . '/y') ?> | <?php comments_popup_link('no comments', '1 comment', '% comments'); ?> | Filed Under: <?php the_category(', ') ?> <span class="read-on"><a href="<?php the_permalink() ?>">read on</a></span>
       						</div>
       					</div>
       					<?php $first = false; ?>
       				<?php endwhile; ?>
       <h1><?php next_posts_link('&laquo; Previous Entries') ?>
       <?php previous_posts_link('Next Entries &raquo;') ?></h1>
       		</div>
       			<?php else : ?>
   
       				<h2 class="center">Not Found</h2>
       				<p class="center">Sorry, but you are looking for something that isn't here.
   
       				<?php include (TEMPLATEPATH . "/searchform.php"); ?>
   
       			<?php endif; ?>
   
       			<div class="clear"></div>
       	</div>
       	<!-- [END] #primary -->
   
       <?php get_sidebar(); ?>
   
       <?php get_footer(); ?>
       ```
   
 * Maybe my placement of the code is incorrect?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Hemingway Theme – Previous Next links](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/)
 *  Thread Starter [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/#post-791306)
 * Yes – the link shows up – and no – it does not navigate througth all the posts
   correctly. It keeps linking to the same page?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Hemingway Theme – Previous Next links](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/)
 *  Thread Starter [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/#post-791301)
 * Check it out:
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Hemingway Theme – Previous Next links](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/)
 *  Thread Starter [inform](https://wordpress.org/support/users/inform/)
 * (@inform)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/hemingway-theme-previous-next-links/#post-791295)
 * drewactual
 * They are not there and want to add them in. Just tried the code from the classic
   theme:
 * <?php posts_nav_link(‘ — ‘, __(‘« Older Posts’), __(‘Newer Posts »’)); ?>
 * But – it did not take me anywhere. Suggestions?

Viewing 11 replies - 1 through 11 (of 11 total)