<?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>Working on &quot;p-meta&quot; &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/working-on-p-meta/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/working-on-p-meta/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 18 Oct 2025 00:07:50 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/working-on-p-meta/#post-112646</guid>
					<title><![CDATA[Working on &quot;p-meta&quot;]]></title>
					<link>https://theme.co/archive/forums/topic/working-on-p-meta/#post-112646</link>
					<pubDate>Thu, 25 Sep 2014 21:37:45 +0000</pubDate>
					<dc:creator>Tim</dc:creator>

					<description>
						<![CDATA[
						<p>Hi i would like to change my p-meta. but due to poor php knowledge i cant get it working.</p>
<p>Rigth now my p-meta looks like this:</p>
<p>admin/ 09.2014/ Allgemein/ Leave a Comment</p>
<p>and i would rather like it to be like this:</p>
<p>SEPTEMBER 14. 2014/ categorie</p>
<p>Is that posible?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/working-on-p-meta/#post-112676</guid>
					<title><![CDATA[Reply To: Working on &quot;p-meta&quot;]]></title>
					<link>https://theme.co/archive/forums/topic/working-on-p-meta/#post-112676</link>
					<pubDate>Thu, 25 Sep 2014 22:05:57 +0000</pubDate>
					<dc:creator>Nabeel A</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Till,</p>
<p>Please provide us the URL of your website so we can take a look into your issue.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/working-on-p-meta/#post-114089</guid>
					<title><![CDATA[Reply To: Working on &quot;p-meta&quot;]]></title>
					<link>https://theme.co/archive/forums/topic/working-on-p-meta/#post-114089</link>
					<pubDate>Sun, 28 Sep 2014 09:58:14 +0000</pubDate>
					<dc:creator>Tim</dc:creator>

					<description>
						<![CDATA[
						<p>here it is:<a href="http://www.sandbanksylt.de/test/hobie-story/" rel="nofollow">http://www.sandbanksylt.de/test/hobie-story/</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/working-on-p-meta/#post-114154</guid>
					<title><![CDATA[Reply To: Working on &quot;p-meta&quot;]]></title>
					<link>https://theme.co/archive/forums/topic/working-on-p-meta/#post-114154</link>
					<pubDate>Sun, 28 Sep 2014 14:19:52 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Please create a Child theme:</p>
<p><a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" rel="nofollow">http://theme.co/x/member/kb/how-to-setup-child-themes/</a></p>
<p>Then using this guide:</p>
<p><a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">http://theme.co/x/member/kb/customization-best-practices/</a></p>
<p>Please copy the file below:</p>
<p>wp-content/themes/x/framework/functions/renew.php</p>
<p>to:</p>
<p>wp-content/themes/x-child-renew/framework/functions/renew.php</p>
<p>and change the code from line 20-113 into:</p>
<pre><code>if ( ! function_exists( &#039;x_renew_entry_meta&#039; ) ) :
  function x_renew_entry_meta() {

    $author = sprintf( &#039;&lt;span&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;%2$s&lt;/time&gt;&lt;/span&gt;&#039;,
      esc_attr( get_the_date( &#039;c&#039; ) ),
      esc_html( get_the_date( &#039;F d.Y&#039; ) )
    );

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

  }
endif; 
</code></pre>
<p>That will do the trick 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/working-on-p-meta/#post-115899</guid>
					<title><![CDATA[Reply To: Working on &quot;p-meta&quot;]]></title>
					<link>https://theme.co/archive/forums/topic/working-on-p-meta/#post-115899</link>
					<pubDate>Tue, 30 Sep 2014 20:11:03 +0000</pubDate>
					<dc:creator>Tim</dc:creator>

					<description>
						<![CDATA[
						<p>Sorry nothing happend&#8230;. i made a functions direktory in my child theme because there was none. may that be the problem?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/working-on-p-meta/#post-115932</guid>
					<title><![CDATA[Reply To: Working on &quot;p-meta&quot;]]></title>
					<link>https://theme.co/archive/forums/topic/working-on-p-meta/#post-115932</link>
					<pubDate>Tue, 30 Sep 2014 21:15:57 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>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:</p>
<p>&#8211; Link to your site<br />
&#8211; WordPress Admin username / password<br />
&#8211; FTP credentials</p>
<p><strong>Don&#8217;t forget to select Set as private reply. This ensures your information is only visible to our staff. </strong></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/working-on-p-meta/#post-120368</guid>
					<title><![CDATA[Reply To: Working on &quot;p-meta&quot;]]></title>
					<link>https://theme.co/archive/forums/topic/working-on-p-meta/#post-120368</link>
					<pubDate>Tue, 07 Oct 2014 07:40:06 +0000</pubDate>
					<dc:creator>Tim</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/working-on-p-meta/#post-120528</guid>
					<title><![CDATA[Reply To: Working on &quot;p-meta&quot;]]></title>
					<link>https://theme.co/archive/forums/topic/working-on-p-meta/#post-120528</link>
					<pubDate>Tue, 07 Oct 2014 12:24:44 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Till,</p>
<p>Sorry for the confusion there.</p>
<p>Please transfer the code into wp-content/themes/x-child-renew/functions.php<br />
You may remove the functions directory you created</p>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/working-on-p-meta/#post-121146</guid>
					<title><![CDATA[Reply To: Working on &quot;p-meta&quot;]]></title>
					<link>https://theme.co/archive/forums/topic/working-on-p-meta/#post-121146</link>
					<pubDate>Wed, 08 Oct 2014 08:11:26 +0000</pubDate>
					<dc:creator>Tim</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/working-on-p-meta/#post-121412</guid>
					<title><![CDATA[Reply To: Working on &quot;p-meta&quot;]]></title>
					<link>https://theme.co/archive/forums/topic/working-on-p-meta/#post-121412</link>
					<pubDate>Wed, 08 Oct 2014 16:31:32 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Till,</p>
<p>Thank you for writing in!</p>
<p>The above code provided contains functions which aren&#8217;t specified in your version of <strong>X</strong> theme (2.2.0). Please update your theme and bundled plugins to the latest versions (2.6.0) and the issue should be resolved.</p>
<p>Please review our <a href="http://theme.co/x/member/kb/updating-your-theme-and-plugins/" rel="nofollow">update guide</a>.</p>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

