<?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>How to add post excerpt or full content to Recent Post element in Cornerstone &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 12 Oct 2025 02:01:45 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308366</guid>
					<title><![CDATA[How to add post excerpt or full content to Recent Post element in Cornerstone]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308366</link>
					<pubDate>Sun, 21 Jun 2015 10:17:50 +0000</pubDate>
					<dc:creator>Stefan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi! Sorry to bother you again, but I&#8217;ve run into a new problem that I&#8217;ve been mulling over for hours and hours and can&#8217;t find a solution to.</p>
<p>I want to add an excerpt to the recent posts feature. I&#8217;ve tried various things in topics I have found here, but nothing works. I followed the instructions in this thread: <a href="https://community.theme.co//forums/topic/recent-post-excerpt-and-excerpt-length-cornerstone/" rel="nofollow">https://community.theme.co//forums/topic/recent-post-excerpt-and-excerpt-length-cornerstone/</a> but to no avail.</p>
<p>Then I thought that maybe it&#8217;s because I didn&#8217;t use a child theme. So I installed a child theme. Now, when I paste the function code into functions.php, everything goes white and I have to re-upload the old functions.php via FTP to make it work again.</p>
<p>Ideally, it would be great to add the option of excerpts to the recent posts element in Cornerstone. But I need a quicker solution. Please help!</p>
<p>Ideally, I&#8217;d actually need the option to display the full content, since the posts are going to be rather short.</p>
<p>My info:</p>
<p>URL: <a href="http://www.brandsourcery.com" rel="nofollow">http://www.brandsourcery.com</a><br />
Wordpress Version 4.2.2<br />
Theme Version: 4.0.1<br />
X-Shortcodes Version 3.0.5</p>
<p>I&#8217;ll post my login info below, so you can take a look. The news section is on my home page.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308367</guid>
					<title><![CDATA[Reply To: How to add post excerpt or full content to Recent Post element in Cornerstone]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308367</link>
					<pubDate>Sun, 21 Jun 2015 10:18:42 +0000</pubDate>
					<dc:creator>Stefan</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308417</guid>
					<title><![CDATA[Reply To: How to add post excerpt or full content to Recent Post element in Cornerstone]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308417</link>
					<pubDate>Sun, 21 Jun 2015 12:00:03 +0000</pubDate>
					<dc:creator>Thai</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Thanks for writing in.</p>
<p>Try adding following PHP code into the functions.php file locates in the child theme&#8217;s folder:</p>
<pre><code>// Displaying Excerpt in Recent Posts
// =============================================================================

function x_shortcode_recent_posts_v2( $atts ) {
  extract( shortcode_atts( array(
    &#039;id&#039;          =&gt; &#039;&#039;,
    &#039;class&#039;       =&gt; &#039;&#039;,
    &#039;style&#039;       =&gt; &#039;&#039;,
    &#039;type&#039;        =&gt; &#039;post&#039;,
    &#039;count&#039;       =&gt; &#039;&#039;,
    &#039;category&#039;    =&gt; &#039;&#039;,
    &#039;offset&#039;      =&gt; &#039;&#039;,
    &#039;orientation&#039; =&gt; &#039;&#039;,
    &#039;no_image&#039;    =&gt; &#039;&#039;,
    &#039;fade&#039;        =&gt; &#039;&#039;
  ), $atts, &#039;x_recent_posts&#039; ) );

  $allowed_post_types = apply_filters( &#039;cs_recent_posts_post_types&#039;, array( &#039;post&#039; =&gt; &#039;post&#039; ) );
  $type = ( isset( $allowed_post_types[$type] ) ) ? $allowed_post_types[$type] : &#039;post&#039;;

  $id            = ( $id          != &#039;&#039;          ) ? &#039;id=&quot;&#039; . esc_attr( $id ) . &#039;&quot;&#039; : &#039;&#039;;
  $class         = ( $class       != &#039;&#039;          ) ? &#039;x-recent-posts cf &#039; . esc_attr( $class ) : &#039;x-recent-posts cf&#039;;
  $style         = ( $style       != &#039;&#039;          ) ? &#039;style=&quot;&#039; . $style . &#039;&quot;&#039; : &#039;&#039;;
  $count         = ( $count       != &#039;&#039;          ) ? $count : 3;
  $category      = ( $category    != &#039;&#039;          ) ? $category : &#039;&#039;;
  $category_type = ( $type        == &#039;post&#039;      ) ? &#039;category_name&#039; : &#039;portfolio-category&#039;;
  $offset        = ( $offset      != &#039;&#039;          ) ? $offset : 0;
  $orientation   = ( $orientation != &#039;&#039;          ) ? &#039; &#039; . $orientation : &#039; horizontal&#039;;
  $no_image      = ( $no_image    == &#039;true&#039;      ) ? $no_image : &#039;&#039;;
  $fade          = ( $fade        == &#039;true&#039;      ) ? $fade : &#039;false&#039;;

  $js_params = array(
    &#039;fade&#039; =&gt; ( $fade == &#039;true&#039; )
  );

  $data = cs_generate_data_attributes( &#039;recent_posts&#039;, $js_params );

  $output = &quot;&lt;div {$id} class=\&quot;{$class}{$orientation}\&quot; {$style} {$data} data-fade=\&quot;{$fade}\&quot; &gt;&quot;;

    $q = new WP_Query( array(
      &#039;orderby&#039;          =&gt; &#039;date&#039;,
      &#039;post_type&#039;        =&gt; &quot;{$type}&quot;,
      &#039;posts_per_page&#039;   =&gt; &quot;{$count}&quot;,
      &#039;offset&#039;           =&gt; &quot;{$offset}&quot;,
      &quot;{$category_type}&quot; =&gt; &quot;{$category}&quot;
    ) );

    if ( $q-&gt;have_posts() ) : while ( $q-&gt;have_posts() ) : $q-&gt;the_post();

      if ( $no_image == &#039;true&#039; ) {
        $image_output       = &#039;&#039;;
        $image_output_class = &#039;no-image&#039;;
      } else {
        $image              = wp_get_attachment_image_src( get_post_thumbnail_id(), &#039;entry-cropped&#039; );
        $bg_image           = ( $image[0] != &#039;&#039; ) ? &#039; style=&quot;background-image: url(&#039; . $image[0] . &#039;);&quot;&#039; : &#039;&#039;;
        $image_output       = &#039;&lt;div class=&quot;x-recent-posts-img&quot;&#039; . $bg_image . &#039;&gt;&lt;/div&gt;&#039;;
        $image_output_class = &#039;with-image&#039;;
      }

      $output .= &#039;&lt;a class=&quot;x-recent-post&#039; . $count . &#039; &#039; . $image_output_class . &#039;&quot; href=&quot;&#039; . get_permalink( get_the_ID() ) . &#039;&quot; title=&quot;&#039; . esc_attr( sprintf( __( &#039;Permalink to: &quot;%s&quot;&#039;, csl18n() ), the_title_attribute( &#039;echo=0&#039; ) ) ) . &#039;&quot;&gt;&#039;
                 . &#039;&lt;article id=&quot;post-&#039; . get_the_ID() . &#039;&quot; class=&quot;&#039; . implode( &#039; &#039;, get_post_class() ) . &#039;&quot;&gt;&#039;
                   . &#039;&lt;div class=&quot;entry-wrap&quot;&gt;&#039;
                     . $image_output
                     . &#039;&lt;div class=&quot;x-recent-posts-content&quot;&gt;&#039;
                       . &#039;&lt;h3 class=&quot;h-recent-posts&quot;&gt;&#039; . get_the_title() . &#039;&lt;/h3&gt;&#039;
                       . &#039;&lt;span class=&quot;x-recent-posts-date&quot;&gt;&#039; . get_the_date() . &#039;&lt;/span&gt;&#039;
                       . &#039;&lt;span class=&quot;x-recent-posts-excerpt&quot;&gt;&#039; . strip_tags( get_the_excerpt() ) . &#039;&lt;/span&gt;&#039;
                     . &#039;&lt;/div&gt;&#039;
                   . &#039;&lt;/div&gt;&#039;
                 . &#039;&lt;/article&gt;&#039;
               . &#039;&lt;/a&gt;&#039;;

    endwhile; endif; wp_reset_postdata();

  $output .= &#039;&lt;/div&gt;&#039;;

  return $output;
}

add_filter(&#039;wp_head&#039;, &#039;custom_recent_posts&#039;);

function custom_recent_posts() {
  remove_shortcode( &#039;x_recent_posts&#039; );

  add_shortcode( &#039;x_recent_posts&#039;, &#039;x_shortcode_recent_posts_v2&#039; );
}</code></pre>
<p>Let us know how it goes!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308435</guid>
					<title><![CDATA[Reply To: How to add post excerpt or full content to Recent Post element in Cornerstone]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308435</link>
					<pubDate>Sun, 21 Jun 2015 12:47:14 +0000</pubDate>
					<dc:creator>Stefan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi! Thanks for the quick reply! I added the code. It didn&#8217;t give me the white screen, at least, but it&#8217;s still not working.</p>
<p>I use this line to insert it into my page:</p>
<pre><code>[x_recent_posts type=&quot;post&quot; count=&quot;3&quot; enable_excerpt=&quot;true&quot; 
orientation=&quot;horizontal&quot;]</code></pre>
<p>I also tried turning &#8220;Full Post Content on Index&#8221; on and off again in the Customizer &#8211;&gt; Blog settings. That didn&#8217;t help either.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308453</guid>
					<title><![CDATA[Reply To: How to add post excerpt or full content to Recent Post element in Cornerstone]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308453</link>
					<pubDate>Sun, 21 Jun 2015 13:28:24 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>I added a new page called &#8216;X support&#8217; and added recent posts shortcode in there, the excerpt display on Cornerstone but not in the page itself.</p>
<p>Please update X and try again, Also you could try testing for a plugin conflict. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it&#8217;s fixed, you&#8217;ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.</p>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308489</guid>
					<title><![CDATA[Reply To: How to add post excerpt or full content to Recent Post element in Cornerstone]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308489</link>
					<pubDate>Sun, 21 Jun 2015 14:41:46 +0000</pubDate>
					<dc:creator>Stefan</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks! The update did it!</p>
<p>One (I hope) last question: Now the whole excerpt text is displayed as a link. Is there a way to remove that?</p>
<p>And would it be possible to remove all links from the displayed posts? The posts are meant to be really short and there is no need to link to an extra post page.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308607</guid>
					<title><![CDATA[Reply To: How to add post excerpt or full content to Recent Post element in Cornerstone]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308607</link>
					<pubDate>Sun, 21 Jun 2015 19:18:12 +0000</pubDate>
					<dc:creator>Nico</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Not sure of what are you trying to achieve. Would you mind sharing us more details about it.</p>
<p>Recent post shortcode is wrapped with link. So from images to the texts its a link. If you want to remove the link for the text only for the image and title. That could be a technical coding, it would be best to contact a custom developer for that one. But if you want just to make the text looks like not clickable, Try adding this code below.</p>
<pre><code>a.x-recent-posts-excerpt{
pointer-events:none;
cursor:none;
color:#aaa;
}</code></pre>
<p>Hope it helps.</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308671</guid>
					<title><![CDATA[Reply To: How to add post excerpt or full content to Recent Post element in Cornerstone]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308671</link>
					<pubDate>Sun, 21 Jun 2015 20:35:17 +0000</pubDate>
					<dc:creator>Stefan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi! Thanks for the tip! Didn&#8217;t work though, unfortunately. (I also tried it with &#8220;_&#8221; instead of &#8220;-&#8220;).</p>
<p>What I try to achieve is this:</p>
<p>The majority of the content of the site is on the main page. On this page there shall be a section that displays &#8220;news&#8221; about the company. Those news are rather short, maybe one or two sentences. I want the clients to be able to easily add those news as posts in the back end. It does not make sense to have separate pages for such short news items, so I just want those items displayed as is, with no link and no hover effect.</p>
<p>It should look more or less like this:</p>
<p><img decoding="async" src="http://www.brandsourcery.com/wp-content/uploads/2015/06/news-sample.jpg" alt="" /></p>
<p>I don&#8217;t know how better to describe it. Just display the (full) posts, with no link (on the headline, image, text &#8230;) whatsoever. No &#8220;read more&#8221; links either (I know they&#8217;re in the image).</p>
<p>&#8212;</p>
<p>My next idea would be to go into the x-shortcodes/functions/shortcodes.php file and remove the<code>&lt;a&gt;</code> tag there.</p>
<p>Or maybe I can just copy the whole section and create my own shortcode and call it something else?</p>
<p>I&#8217;d prefer a solution that doesn&#8217;t need me to customize the system files though.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308800</guid>
					<title><![CDATA[Reply To: How to add post excerpt or full content to Recent Post element in Cornerstone]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-308800</link>
					<pubDate>Mon, 22 Jun 2015 00:45:58 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>You can just edit your custom recent post shortcode and remove the link from there. You can not remove a tag because if you do so, it will break the styling. Please try to replace your code with this one instead:</p>
<pre><code>// Displaying Excerpt in Recent Posts
// =============================================================================

function x_shortcode_recent_posts_v2( $atts ) {
  extract( shortcode_atts( array(
    &#039;id&#039;          =&gt; &#039;&#039;,
    &#039;class&#039;       =&gt; &#039;&#039;,
    &#039;style&#039;       =&gt; &#039;&#039;,
    &#039;type&#039;        =&gt; &#039;post&#039;,
    &#039;count&#039;       =&gt; &#039;&#039;,
    &#039;category&#039;    =&gt; &#039;&#039;,
    &#039;offset&#039;      =&gt; &#039;&#039;,
    &#039;orientation&#039; =&gt; &#039;&#039;,
    &#039;no_image&#039;    =&gt; &#039;&#039;,
    &#039;fade&#039;        =&gt; &#039;&#039;
  ), $atts, &#039;x_recent_posts&#039; ) );

  $allowed_post_types = apply_filters( &#039;cs_recent_posts_post_types&#039;, array( &#039;post&#039; =&gt; &#039;post&#039; ) );
  $type = ( isset( $allowed_post_types[$type] ) ) ? $allowed_post_types[$type] : &#039;post&#039;;

  $id            = ( $id          != &#039;&#039;          ) ? &#039;id=&quot;&#039; . esc_attr( $id ) . &#039;&quot;&#039; : &#039;&#039;;
  $class         = ( $class       != &#039;&#039;          ) ? &#039;x-recent-posts cf &#039; . esc_attr( $class ) : &#039;x-recent-posts cf&#039;;
  $style         = ( $style       != &#039;&#039;          ) ? &#039;style=&quot;&#039; . $style . &#039;&quot;&#039; : &#039;&#039;;
  $count         = ( $count       != &#039;&#039;          ) ? $count : 3;
  $category      = ( $category    != &#039;&#039;          ) ? $category : &#039;&#039;;
  $category_type = ( $type        == &#039;post&#039;      ) ? &#039;category_name&#039; : &#039;portfolio-category&#039;;
  $offset        = ( $offset      != &#039;&#039;          ) ? $offset : 0;
  $orientation   = ( $orientation != &#039;&#039;          ) ? &#039; &#039; . $orientation : &#039; horizontal&#039;;
  $no_image      = ( $no_image    == &#039;true&#039;      ) ? $no_image : &#039;&#039;;
  $fade          = ( $fade        == &#039;true&#039;      ) ? $fade : &#039;false&#039;;

  $js_params = array(
    &#039;fade&#039; =&gt; ( $fade == &#039;true&#039; )
  );

  $data = cs_generate_data_attributes( &#039;recent_posts&#039;, $js_params );

  $output = &quot;&lt;div {$id} class=\&quot;{$class}{$orientation}\&quot; {$style} {$data} data-fade=\&quot;{$fade}\&quot; &gt;&quot;;

    $q = new WP_Query( array(
      &#039;orderby&#039;          =&gt; &#039;date&#039;,
      &#039;post_type&#039;        =&gt; &quot;{$type}&quot;,
      &#039;posts_per_page&#039;   =&gt; &quot;{$count}&quot;,
      &#039;offset&#039;           =&gt; &quot;{$offset}&quot;,
      &quot;{$category_type}&quot; =&gt; &quot;{$category}&quot;
    ) );

    if ( $q-&gt;have_posts() ) : while ( $q-&gt;have_posts() ) : $q-&gt;the_post();

      if ( $no_image == &#039;true&#039; ) {
        $image_output       = &#039;&#039;;
        $image_output_class = &#039;no-image&#039;;
      } else {
        $image              = wp_get_attachment_image_src( get_post_thumbnail_id(), &#039;entry-cropped&#039; );
        $bg_image           = ( $image[0] != &#039;&#039; ) ? &#039; style=&quot;background-image: url(&#039; . $image[0] . &#039;);&quot;&#039; : &#039;&#039;;
        $image_output       = &#039;&lt;div class=&quot;x-recent-posts-img&quot;&#039; . $bg_image . &#039;&gt;&lt;/div&gt;&#039;;
        $image_output_class = &#039;with-image&#039;;
      }

      $output .= &#039;&lt;a class=&quot;x-recent-post&#039; . $count . &#039; &#039; . $image_output_class . &#039;&quot; href=&quot;#&quot; title=&quot;&#039; . esc_attr( sprintf( __( &#039;Permalink to: &quot;%s&quot;&#039;, csl18n() ), the_title_attribute( &#039;echo=0&#039; ) ) ) . &#039;&quot;&gt;&#039;
                 . &#039;&lt;article id=&quot;post-&#039; . get_the_ID() . &#039;&quot; class=&quot;&#039; . implode( &#039; &#039;, get_post_class() ) . &#039;&quot;&gt;&#039;
                   . &#039;&lt;div class=&quot;entry-wrap&quot;&gt;&#039;
                     . $image_output
                     . &#039;&lt;div class=&quot;x-recent-posts-content&quot;&gt;&#039;
                       . &#039;&lt;h3 class=&quot;h-recent-posts&quot;&gt;&#039; . get_the_title() . &#039;&lt;/h3&gt;&#039;
                       . &#039;&lt;span class=&quot;x-recent-posts-date&quot;&gt;&#039; . get_the_date() . &#039;&lt;/span&gt;&#039;
                       . &#039;&lt;span class=&quot;x-recent-posts-excerpt&quot;&gt;&#039; . strip_tags( get_the_excerpt() ) . &#039;&lt;/span&gt;&#039;
                     . &#039;&lt;/div&gt;&#039;
                   . &#039;&lt;/div&gt;&#039;
                 . &#039;&lt;/article&gt;&#039;
               . &#039;&lt;/a&gt;&#039;;

    endwhile; endif; wp_reset_postdata();

  $output .= &#039;&lt;/div&gt;&#039;;

  return $output;
}

add_filter(&#039;wp_head&#039;, &#039;custom_recent_posts&#039;);

function custom_recent_posts() {
  remove_shortcode( &#039;x_recent_posts&#039; );
  add_shortcode( &#039;x_recent_posts&#039;, &#039;x_shortcode_recent_posts_v2&#039; );
}</code></pre>
<p>We have remove the <code>href=&quot;the-link&quot;</code> so that it will not go anywhere. And to remove the link pointer, you also need to add this css code in your customizer, <strong>Appearance &gt; Customize &gt; Custom &gt; CSS</strong></p>
<pre><code>.x-recent-posts a{
    cursor: default;
}</code></pre>
<p>And to make sure that the link doesn&#8217;t go anywhere, please add the following js code in the customizer, <strong>Appearance &gt; Customize &gt; Custom &gt; Javascript</strong></p>
<pre><code>(function($){
  $(&#039;.x-recent-posts a&#039;).on(&#039;click touchstart&#039;, function(e){
    e.prevenDefault();
  });
})(jQuery);</code></pre>
<p>Please let us know if this works out for you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-309078</guid>
					<title><![CDATA[Reply To: How to add post excerpt or full content to Recent Post element in Cornerstone]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-post-excerpt-or-full-content-to-recent-post-element-in-cornerstone/#post-309078</link>
					<pubDate>Mon, 22 Jun 2015 07:42:14 +0000</pubDate>
					<dc:creator>Stefan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi! Thanks for the new suggestion! It <em>kinda</em> works.</p>
<p>But there are still some problems:</p>
<p>a) Now the excerpt is shown in the live version, but not in Cornerstone.</p>
<p>b) The image still has a rollover effect.</p>
<p>c) There&#8217;s still a link, which, granted, doesn&#8217;t go to the post, but to the main page instead. So if you happen to click on the article, it reloads the page and goes back to the top.</p>
<p>Do I lose <em>all</em> kind of styling if I remove the <code>&lt;a&gt;</code> tag? Couldn&#8217;t I just add my own CSS class to it somehow by replacing the <code>&lt;a&gt;</code> with a <code>&lt;div&gt;</code> tag?</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

