<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>Date stamp and author not displaying on blog post &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 18 Oct 2025 07:18:29 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-244581</guid>
					<title><![CDATA[Date stamp and author not displaying on blog post]]></title>
					<link>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-244581</link>
					<pubDate>Wed, 08 Apr 2015 11:29:22 +0000</pubDate>
					<dc:creator>avrlondon</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>I&#8217;m experiencing an unusual problem. I&#8217;m using the ICON stack and although I&#8217;ve not altered the meta informations settings for posts and portfolios, my portfolio items are displaying a date stamp but not author, whereas my blog posts are not displaying any meta information.</p>
<p>I would like the following situation:</p>
<p>Blog Posts: Date, author, tags<br />
Portfolio items: No date, no author</p>
<p>Please can you let me know how I can achieve the above?</p>
<p>Many thanks,</p>
<p>Melissa</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-244619</guid>
					<title><![CDATA[Reply To: Date stamp and author not displaying on blog post]]></title>
					<link>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-244619</link>
					<pubDate>Wed, 08 Apr 2015 12:19:42 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Because this requires a template change, I&#8217;d advise that you setup a <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" title="Child Themes" target="_blank" rel="nofollow">child theme</a>. This allows you to make code changes that won&#8217;t be overwritten when an <strong>X</strong> update is released. After your child theme is setup, please review how we recommend making template changes in <a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">Customization Best Practices</a>.</p>
<p>Please add this in functions.php file inside child theme :</p>
<pre><code>// Entry Meta
// =============================================================================

if ( ! function_exists( &#039;x_icon_entry_meta&#039; ) ) :
  function x_icon_entry_meta() {

   
    $author = sprintf( &#039;&lt;span&gt;&lt;i class=&quot;x-icon-pencil&quot;&gt;&lt;/i&gt; %s&lt;/span&gt;&#039;,
      get_the_author()
    );

    $date = sprintf( &#039;&lt;span&gt;&lt;time class=&quot;entry-date&quot; datetime=&quot;%1$s&quot;&gt;&lt;i class=&quot;x-icon-calendar&quot;&gt;&lt;/i&gt; %2$s&lt;/time&gt;&lt;/span&gt;&#039;,
      esc_attr( get_the_date( &#039;c&#039; ) ),
      esc_html( get_the_date() )
    );

    if ( get_post_type() == &#039;x-portfolio&#039; ) {
      if ( has_term( &#039;&#039;, &#039;portfolio-category&#039;, NULL ) ) {
        $categories        = get_the_terms( get_the_ID(), &#039;portfolio-category&#039; );
        $separator         = &#039;, &#039;;
        $categories_output = &#039;&#039;;
        foreach ( $categories as $category ) {
          $categories_output .= &#039;&lt;a href=&quot;&#039;
                              . get_term_link( $category-&gt;slug, &#039;portfolio-category&#039; )
                              . &#039;&quot; title=&quot;&#039;
                              . esc_attr( sprintf( __( &quot;View all posts in: &amp;ldquo;%s&amp;rdquo;&quot;, &#039;__x__&#039; ), $category-&gt;name ) )
                              . &#039;&quot;&gt;&lt;i class=&quot;x-icon-bookmark&quot;&gt;&lt;/i&gt; &#039;
                              . $category-&gt;name
                              . &#039;&lt;/a&gt;&#039;
                              . $separator;
        }

        $categories_list = sprintf( &#039;&lt;span&gt;%s&lt;/span&gt;&#039;,
          trim( $categories_output, $separator )
        );
      } else {
        $categories_list = &#039;&#039;;
      }
    } else {
      $categories        = get_the_category();
      $separator         = &#039;, &#039;;
      $categories_output = &#039;&#039;;
      foreach ( $categories as $category ) {
        $categories_output .= &#039;&lt;a href=&quot;&#039;
                            . get_category_link( $category-&gt;term_id )
                            . &#039;&quot; title=&quot;&#039;
                            . esc_attr( sprintf( __( &quot;View all posts in: &amp;ldquo;%s&amp;rdquo;&quot;, &#039;__x__&#039; ), $category-&gt;name ) )
                            . &#039;&quot;&gt;&lt;i class=&quot;x-icon-bookmark&quot;&gt;&lt;/i&gt; &#039;
                            . $category-&gt;name
                            . &#039;&lt;/a&gt;&#039;
                            . $separator;
      }

      $categories_list = sprintf( &#039;&lt;span&gt;%s&lt;/span&gt;&#039;,
        trim( $categories_output, $separator )
      );
    }

    if ( comments_open() ) {
      $title  = get_the_title();
      $link   = get_comments_link();
      $number = get_comments_number();
      if ( $number == 0 ) {
        $comments = sprintf( &#039;&lt;span&gt;&lt;a href=&quot;%1$s&quot; title=&quot;%2$s&quot; class=&quot;meta-comments&quot;&gt;&lt;i class=&quot;x-icon-comments&quot;&gt;&lt;/i&gt; %3$s&lt;/a&gt;&lt;/span&gt;&#039;,
          esc_url( $link ),
          esc_attr( sprintf( __( &#039;Leave a comment on: &amp;ldquo;%s&amp;rdquo;&#039;, &#039;__x__&#039; ), $title ) ),
          __( &#039;Leave a Comment&#039; , &#039;__x__&#039; )
        );
      } else if ( $number == 1 ) {
        $comments = sprintf( &#039;&lt;span&gt;&lt;a href=&quot;%1$s&quot; title=&quot;%2$s&quot; class=&quot;meta-comments&quot;&gt;&lt;i class=&quot;x-icon-comments&quot;&gt;&lt;/i&gt; %3$s&lt;/a&gt;&lt;/span&gt;&#039;,
          esc_url( $link ),
          esc_attr( sprintf( __( &#039;Leave a comment on: &amp;ldquo;%s&amp;rdquo;&#039;, &#039;__x__&#039; ), $title ) ),
          $number . &#039; &#039; . __( &#039;Comment&#039; , &#039;__x__&#039; )
        );
      } else {
        $comments = sprintf( &#039;&lt;span&gt;&lt;a href=&quot;%1$s&quot; title=&quot;%2$s&quot; class=&quot;meta-comments&quot;&gt;&lt;i class=&quot;x-icon-comments&quot;&gt;&lt;/i&gt; %3$s&lt;/a&gt;&lt;/span&gt;&#039;,
          esc_url( $link ),
          esc_attr( sprintf( __( &#039;Leave a comment on: &amp;ldquo;%s&amp;rdquo;&#039;, &#039;__x__&#039; ), $title ) ),
          $number . &#039; &#039; . __( &#039;Comments&#039; , &#039;__x__&#039; )
        );
      }
    } else {
      $comments = &#039;&#039;;
    }

    if ( x_does_not_need_entry_meta() ) {
      return;
    } else {
      printf( &#039;&lt;p class=&quot;p-meta&quot;&gt;%1$s%2$s%3$s%4$s&lt;/p&gt;&#039;,
        $author,
        $date,
        $categories_list,
        $comments
      );
    }

  }
endif;
</code></pre>
<p>To display tags copy <strong>_content-post-headerx.php</strong> file from <strong> framework -&gt; views -&gt; icon</strong> and put it in the same path inside child theme, Now replace existing code with this:</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/ICON/_CONTENT-POST-HEADER.PHP
// -----------------------------------------------------------------------------
// Standard &lt;header&gt; output for various posts.
// =============================================================================

?&gt;

&lt;header class=&quot;entry-header&quot;&gt;
  &lt;?php if ( is_single() ) : ?&gt;
    &lt;h1 class=&quot;entry-title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
  &lt;?php else : ?&gt;
    &lt;h2 class=&quot;entry-title&quot;&gt;
      &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( sprintf( __( &#039;Permalink to: &quot;%s&quot;&#039;, &#039;__x__&#039; ), the_title_attribute( &#039;echo=0&#039; ) ) ); ?&gt;&quot;&gt;&lt;?php x_the_alternate_title(); ?&gt;&lt;/a&gt;
    &lt;/h2&gt;
  &lt;?php endif; ?&gt;
  &lt;?php x_icon_entry_meta(); ?&gt;
  &lt;?php if ( has_tag() ) : ?&gt;
  &lt;footer class=&quot;entry-footer cf&quot;&gt;
    &lt;?php echo get_the_tag_list(); ?&gt;
  &lt;/footer&gt;
&lt;?php endif; ?&gt;
  &lt;?php if ( get_post_format() == &#039;quote&#039; ) : ?&gt;
    &lt;p class=&quot;entry-title-sub&quot;&gt;&lt;?php echo get_post_meta( get_the_ID(), &#039;_x_quote_quote&#039;, true ); ?&gt;&lt;/p&gt;
  &lt;?php endif; ?&gt;
&lt;/header&gt;</code></pre>
<p>Please add the following CSS under<strong> Customize -&gt; Custom -&gt; CSS</strong> :`</p>
<pre><code>.single-x-portfolio .p-meta{
display:none;
}</code></pre>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-249417</guid>
					<title><![CDATA[Reply To: Date stamp and author not displaying on blog post]]></title>
					<link>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-249417</link>
					<pubDate>Tue, 14 Apr 2015 16:08:26 +0000</pubDate>
					<dc:creator>avrlondon</dc:creator>

					<description>
						<![CDATA[
						<p>Many thanks for your help. I created the child theme (I had one already) and copied the above code into my functions.php file in the x child theme. The portfolio items are now all correct, I can only see the title and no author or date information &#8211; great! However, there is also no meta information showing for blog posts &#8211; I would like to see date and author here if possible&#8230;</p>
<p>Regards,</p>
<p>Melissa </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-249507</guid>
					<title><![CDATA[Reply To: Date stamp and author not displaying on blog post]]></title>
					<link>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-249507</link>
					<pubDate>Tue, 14 Apr 2015 17:35:56 +0000</pubDate>
					<dc:creator>Thai</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,<br />
Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:<br />
– Link to your site<br />
– WordPress Admin username / Password<br />
<strong>Don’t forget to select Set as a private reply. This ensures your information is only visible to our staff.</strong></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-256730</guid>
					<title><![CDATA[Reply To: Date stamp and author not displaying on blog post]]></title>
					<link>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-256730</link>
					<pubDate>Thu, 23 Apr 2015 15:38:28 +0000</pubDate>
					<dc:creator>avrlondon</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>I think I mentioned in a previous post that I am developing offline, so don&#8217;t have an URL or credentials I can send you, but happy to send you the code. Here is my functions.php file:</p>
<p>&lt;?php</p>
<p>// =============================================================================</p>
<p>// FUNCTIONS.PHP</p>
<p>// &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>// Overwrite or add your own custom functions to X in this file.</p>
<p>// =============================================================================</p>
<p>// Entry Meta<br />
// =============================================================================</p>
<p>if ( ! function_exists( &#8216;x_icon_entry_meta&#8217; ) ) :<br />
  function x_icon_entry_meta() {</p>
<p>    $author = sprintf( &#8216;&lt;span&gt;&lt;i class=&#8221;x-icon-pencil&#8221;&gt;&lt;/i&gt; %s&lt;/span&gt;&#8217;,<br />
      get_the_author()<br />
    );</p>
<p>    $date = sprintf( &#8216;&lt;span&gt;&lt;time class=&#8221;entry-date&#8221; datetime=&#8221;%1$s&#8221;&gt;&lt;i class=&#8221;x-icon-calendar&#8221;&gt;&lt;/i&gt; %2$s&lt;/time&gt;&lt;/span&gt;&#8217;,<br />
      esc_attr( get_the_date( &#8216;c&#8217; ) ),<br />
      esc_html( get_the_date() )<br />
    );</p>
<p>    if ( get_post_type() == &#8216;x-portfolio&#8217; ) {<br />
      if ( has_term( &#8221;, &#8216;portfolio-category&#8217;, NULL ) ) {<br />
        $categories        = get_the_terms( get_the_ID(), &#8216;portfolio-category&#8217; );<br />
        $separator         = &#8216;, &#8216;;<br />
        $categories_output = &#8221;;<br />
        foreach ( $categories as $category ) {<br />
          $categories_output .= &#8216;&lt;a href=&#8221;&#8216;<br />
                              . get_term_link( $category-&gt;slug, &#8216;portfolio-category&#8217; )<br />
                              . &#8216;&#8221; title=&#8221;&#8216;<br />
                              . esc_attr( sprintf( __( &#8220;View all posts in: &ldquo;%s&rdquo;&#8221;, &#8216;__x__&#8217; ), $category-&gt;name ) )<br />
                              . &#8216;&#8221;&gt;&lt;i class=&#8221;x-icon-bookmark&#8221;&gt;&lt;/i&gt; &#8216;<br />
                              . $category-&gt;name<br />
                              . &#8216;&#8216;<br />
                              . $separator;<br />
        }</p>
<p>        $categories_list = sprintf( &#8216;&lt;span&gt;%s&lt;/span&gt;&#8217;,<br />
          trim( $categories_output, $separator )<br />
        );<br />
      } else {<br />
        $categories_list = &#8221;;<br />
      }<br />
    } else {<br />
      $categories        = get_the_category();<br />
      $separator         = &#8216;, &#8216;;<br />
      $categories_output = &#8221;;<br />
      foreach ( $categories as $category ) {<br />
        $categories_output .= &#8216;&lt;a href=&#8221;&#8216;<br />
                            . get_category_link( $category-&gt;term_id )<br />
                            . &#8216;&#8221; title=&#8221;&#8216;<br />
                            . esc_attr( sprintf( __( &#8220;View all posts in: &ldquo;%s&rdquo;&#8221;, &#8216;__x__&#8217; ), $category-&gt;name ) )<br />
                            . &#8216;&#8221;&gt;&lt;i class=&#8221;x-icon-bookmark&#8221;&gt;&lt;/i&gt; &#8216;<br />
                            . $category-&gt;name<br />
                            . &#8216;&#8216;<br />
                            . $separator;<br />
      }</p>
<p>      $categories_list = sprintf( &#8216;&lt;span&gt;%s&lt;/span&gt;&#8217;,<br />
        trim( $categories_output, $separator )<br />
      );<br />
    }</p>
<p>    if ( comments_open() ) {<br />
      $title  = get_the_title();<br />
      $link   = get_comments_link();<br />
      $number = get_comments_number();<br />
      if ( $number == 0 ) {<br />
        $comments = sprintf( &#8216;&lt;span&gt;<a href="%1$s" title="%2$s" rel="nofollow">&lt;i class=&#8221;x-icon-comments&#8221;&gt;&lt;/i&gt; %3$s</a>&lt;/span&gt;&#8217;,<br />
          esc_url( $link ),<br />
          esc_attr( sprintf( __( &#8216;Leave a comment on: &ldquo;%s&rdquo;&#8217;, &#8216;__x__&#8217; ), $title ) ),<br />
          __( &#8216;Leave a Comment&#8217; , &#8216;__x__&#8217; )<br />
        );<br />
      } else if ( $number == 1 ) {<br />
        $comments = sprintf( &#8216;&lt;span&gt;<a href="%1$s" title="%2$s" rel="nofollow">&lt;i class=&#8221;x-icon-comments&#8221;&gt;&lt;/i&gt; %3$s</a>&lt;/span&gt;&#8217;,<br />
          esc_url( $link ),<br />
          esc_attr( sprintf( __( &#8216;Leave a comment on: &ldquo;%s&rdquo;&#8217;, &#8216;__x__&#8217; ), $title ) ),<br />
          $number . &#8216; &#8216; . __( &#8216;Comment&#8217; , &#8216;__x__&#8217; )<br />
        );<br />
      } else {<br />
        $comments = sprintf( &#8216;&lt;span&gt;<a href="%1$s" title="%2$s" rel="nofollow">&lt;i class=&#8221;x-icon-comments&#8221;&gt;&lt;/i&gt; %3$s</a>&lt;/span&gt;&#8217;,<br />
          esc_url( $link ),<br />
          esc_attr( sprintf( __( &#8216;Leave a comment on: &ldquo;%s&rdquo;&#8217;, &#8216;__x__&#8217; ), $title ) ),<br />
          $number . &#8216; &#8216; . __( &#8216;Comments&#8217; , &#8216;__x__&#8217; )<br />
        );<br />
      }<br />
    } else {<br />
      $comments = &#8221;;<br />
    }</p>
<p>    if ( x_does_not_need_entry_meta() ) {<br />
      return;<br />
    } else {<br />
      printf( &#8216;&lt;p class=&#8221;p-meta&#8221;&gt;%1$s%2$s%3$s%4$s&lt;/p&gt;&#8217;,<br />
        $author,<br />
        $date,<br />
        $categories_list,<br />
        $comments<br />
      );<br />
    }</p>
<p>  }<br />
endif;</p>
<p>?&gt;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-256898</guid>
					<title><![CDATA[Reply To: Date stamp and author not displaying on blog post]]></title>
					<link>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-256898</link>
					<pubDate>Thu, 23 Apr 2015 19:41:31 +0000</pubDate>
					<dc:creator>Prasant Rai</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for writing in.</p>
<p>Please check<strong> Appearance &gt; Customize &gt; Blog &gt; Post Meta</strong> if it is enabled. If not, please enable it.</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-265872</guid>
					<title><![CDATA[Reply To: Date stamp and author not displaying on blog post]]></title>
					<link>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-265872</link>
					<pubDate>Tue, 05 May 2015 13:09:31 +0000</pubDate>
					<dc:creator>avrlondon</dc:creator>

					<description>
						<![CDATA[
						<p>Yes that was the issue &#8211; very straightforward. Thanks for your help!<br />
How do I alter the functions.php code if I now want to display only the date and author using the &#8220;|&#8221; separator? (NO tags and NO icons)</p>
<p>Is there a global setting to turn off icons through the site?</p>
<p>Many thanks,</p>
<p>Melissa</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-266010</guid>
					<title><![CDATA[Reply To: Date stamp and author not displaying on blog post]]></title>
					<link>https://theme.co/archive/forums/topic/date-stamp-and-author-not-displaying-on-blog-post/#post-266010</link>
					<pubDate>Tue, 05 May 2015 15:16:59 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Melissa,</p>
<p>Thanks for writing in! To assist you with this, we&#8217;ll first need you to provide us with your URL as stated on the forum entrance page. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you.</p>
<p>In the meantime, to disable the post icons, you can use following CSS under <strong>Custom &gt; CSS</strong> in the Customizer:</p>
<pre><code>.entry-title:before {
    display: none;
}
</code></pre>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

