<?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>Remove Post Meta &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/remove-post-meta/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/remove-post-meta/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 19 Oct 2025 11:24:17 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-post-meta/#post-2832</guid>
					<title><![CDATA[Remove Post Meta]]></title>
					<link>https://theme.co/archive/forums/topic/remove-post-meta/#post-2832</link>
					<pubDate>Sun, 29 Dec 2013 03:34:10 +0000</pubDate>
					<dc:creator>John B</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I am using a child theme. Can you tell me how to remove the information that is displayed underneath the post title. For example, my posts currently display the author, date, category, and leave a comment. </p>
<p>I would like to remove all of this and only display the post title. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-post-meta/#post-2833</guid>
					<title><![CDATA[Reply To: Remove Post Meta]]></title>
					<link>https://theme.co/archive/forums/topic/remove-post-meta/#post-2833</link>
					<pubDate>Sun, 29 Dec 2013 04:21:14 +0000</pubDate>
					<dc:creator>Kory</dc:creator>

					<description>
						<![CDATA[
						<p>Hey John,</p>
<p>If you click on the <strong>Screen Options</strong> tab in the upper right corner of the admin panel when you&#8217;re on a post/page, you can turn a lot these elements off if you don&#8217;t need them.</p>
<p>Let us know if that lets you accomplish what you&#8217;re setting out to do.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-post-meta/#post-2834</guid>
					<title><![CDATA[Reply To: Remove Post Meta]]></title>
					<link>https://theme.co/archive/forums/topic/remove-post-meta/#post-2834</link>
					<pubDate>Sun, 29 Dec 2013 04:42:48 +0000</pubDate>
					<dc:creator>John B</dc:creator>

					<description>
						<![CDATA[
						<p>I am referring to once I publish the post. I have all the &#8220;Screen Options&#8221; checked and still do not see an option to remove this information from the published post. Is this hard coded into the template?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-post-meta/#post-2835</guid>
					<title><![CDATA[Reply To: Remove Post Meta]]></title>
					<link>https://theme.co/archive/forums/topic/remove-post-meta/#post-2835</link>
					<pubDate>Sun, 29 Dec 2013 04:51:21 +0000</pubDate>
					<dc:creator>Kory</dc:creator>

					<description>
						<![CDATA[
						<p>John,</p>
<p>My apologies, I thought you were referring to the meta boxes in the admin area. Depending on the stack you&#8217;re using, you will need to go find the function for this in the stack specific functions file. You can find these at the following path in X:</p>
<pre>/framework/functions/</pre>
<p>Once you are here, open up the file corresponding to the Stack you are using. For example, if you are using the Integrity Stack, you will need to open <strong>integrity.php</strong>.</p>
<p>To continue on with the Integrity example, you would then need to find the <strong>x_integrity_entry_meta()</strong> function. Next, copy this function into the <strong>functions.php</strong> file of your child theme.</p>
<p>Once you have done that, you can edit this function as needed. The parts you&#8217;ll want to edit are originally on lines <strong>166-175</strong> of the integrity.php file. Simply remove the items you don&#8217;t want, and make sure to remove the corresponding elements from line 169 in the <strong>%1$s%2$s%3$s%4$s</strong> string. For example, if you wanted to remove the <strong>$author</strong> and <strong>$categories_list</strong> portions of this, your code would need to look something like the following:</p>
<pre>if ( get_post_type() == 'page' ) {
  return;
} else {
  printf( '&lt;p class="p-meta"&gt;%1$s%2$s&lt;/p&gt;',
    $date,
    $comments
  );
}</pre>
<p>Let us know if you need anything else.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-post-meta/#post-119524</guid>
					<title><![CDATA[Reply To: Remove Post Meta]]></title>
					<link>https://theme.co/archive/forums/topic/remove-post-meta/#post-119524</link>
					<pubDate>Mon, 06 Oct 2014 15:58:34 +0000</pubDate>
					<dc:creator>rwhitted</dc:creator>

					<description>
						<![CDATA[
						<p>Could you help me identify the same for Ethos &#8211; I have ethos.php open and am looking to remove post dates from every post, making sure it doesn&#8217;t keep the &#8220;/&#8221; after what then becomes a blank space.</p>
<p>Also concerned that once the date is gone, there will be a blank space on the featured posts at the very top of the page &#8211; using Ethos Main Demo 1 (<a href="http://theme.co/x/demo/ethos/1/" rel="nofollow">http://theme.co/x/demo/ethos/1/</a>)</p>
<p>Thank you!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-post-meta/#post-119629</guid>
					<title><![CDATA[Reply To: Remove Post Meta]]></title>
					<link>https://theme.co/archive/forums/topic/remove-post-meta/#post-119629</link>
					<pubDate>Mon, 06 Oct 2014 19:06:09 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thank you for writing in!</p>
<p>Instead of that, please try adding the following code in your child theme&#8217;s <strong>functions.php</strong> file:</p>
<pre><code>if ( ! function_exists( &#039;x_ethos_entry_meta&#039; ) ) :
  function x_ethos_entry_meta() {

    $author = sprintf( &#039; by %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;%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; &#039;
                              . $category-&gt;name
                              . &#039;&lt;/a&gt;&#039;
                              . $separator;
        }

        $categories_list = sprintf( &#039;&lt;span&gt;In %s&#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; &#039;
                            . $category-&gt;name
                            . &#039;&lt;/a&gt;&#039;
                            . $separator;
      }

      $categories_list = sprintf( &#039;&lt;span&gt;In %s&#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;%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;%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;%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&lt;/p&gt;&#039;,
        $categories_list,
        $author,
        // $date,
        $comments
      );
    }

  }
endif;
</code></pre>
<p>After that, copy the file <strong>wp-content/themes/x/framework/views/ethos/_post-slider</strong> and add in your child theme&#8217;s folder <strong>/framework/views/ethos/</strong>, open in a text editor and replace the following line of code (line no. 57):</p>
<pre><code>&lt;span class=&quot;featured-meta&quot;&gt;&lt;?php echo x_ethos_post_categories(); ?&gt; / &lt;?php echo get_the_date( &#039;F j, Y&#039; ); ?&gt;&lt;/span&gt;
</code></pre>
<p>With:</p>
<pre><code>&lt;span class=&quot;featured-meta&quot;&gt;&lt;?php echo x_ethos_post_categories(); ?&gt;&lt;/span&gt;
</code></pre>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-post-meta/#post-125177</guid>
					<title><![CDATA[Reply To: Remove Post Meta]]></title>
					<link>https://theme.co/archive/forums/topic/remove-post-meta/#post-125177</link>
					<pubDate>Tue, 14 Oct 2014 18:47:09 +0000</pubDate>
					<dc:creator>rwhitted</dc:creator>

					<description>
						<![CDATA[
						<p>That made the site disappear&#8230; does it matter where in the functions.php document I paste that code?</p>
<p>Thank you &#8211; site&#8217;s almost complete and it looks great! Client is very happy.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-post-meta/#post-125360</guid>
					<title><![CDATA[Reply To: Remove Post Meta]]></title>
					<link>https://theme.co/archive/forums/topic/remove-post-meta/#post-125360</link>
					<pubDate>Tue, 14 Oct 2014 23:33:17 +0000</pubDate>
					<dc:creator>Kosher K</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Can you please provide URL of your site and wordpress &amp; FTP access for us to check on your set-up.</p>
<p>Thank you</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-post-meta/#post-127103</guid>
					<title><![CDATA[Reply To: Remove Post Meta]]></title>
					<link>https://theme.co/archive/forums/topic/remove-post-meta/#post-127103</link>
					<pubDate>Fri, 17 Oct 2014 14:04:43 +0000</pubDate>
					<dc:creator>rwhitted</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-post-meta/#post-127233</guid>
					<title><![CDATA[Reply To: Remove Post Meta]]></title>
					<link>https://theme.co/archive/forums/topic/remove-post-meta/#post-127233</link>
					<pubDate>Fri, 17 Oct 2014 17:42:34 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thank you for writing in!</p>
<p>Upon checking, the code has been added and the site is opening just fine here. Would you mind confirming the issue again?</p>
<p>Regarding the date from post carousel, please try adding following CSS code under <strong>Custom &gt; CSS</strong> in the Customizer:</p>
<pre><code>.x-post-carousel-meta&gt;span.entry-cover-date {
   display: none;
}
</code></pre>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

