Tagged: x
-
AuthorPosts
-
January 30, 2017 at 9:47 am #1350908
ANNIEOHParticipantI am trying to show an excerpt of the most recent blog post on my home page.
I use this shortcode:
[x_recent_posts type=”post” count=”1″ orientation=”horizontal” no_image=”true” fade=”true” enable_excerpt=”true”]
Only the blog title and date appear.
Here is the url: http://www.anniehogsett.com and the blog is at the bottom of the page.
I have read 2015 forum posts where support provided a revised php function and I assume that is now incorporated into the release. Right?
Thanks.
Bill
January 30, 2017 at 11:08 am #1351039
JadeModeratorHi Bill,
Please add this code in the child theme’s functions.php:
// Displaying Excerpt in Recent Posts // ============================================================================= function x_shortcode_recent_posts_v2( $atts ) { extract( shortcode_atts( array( 'id' => '', 'class' => '', 'style' => '', 'type' => 'post', 'count' => '', 'category' => '', 'offset' => '', 'orientation' => '', 'no_image' => '', 'fade' => '' ), $atts, 'x_recent_posts' ) ); $allowed_post_types = apply_filters( 'cs_recent_posts_post_types', array( 'post' => 'post' ) ); $type = ( isset( $allowed_post_types[$type] ) ) ? $allowed_post_types[$type] : 'post'; $id = ( $id != '' ) ? 'id="' . esc_attr( $id ) . '"' : ''; $class = ( $class != '' ) ? 'x-recent-posts cf ' . esc_attr( $class ) : 'x-recent-posts cf'; $style = ( $style != '' ) ? 'style="' . $style . '"' : ''; $count = ( $count != '' ) ? $count : 3; $category = ( $category != '' ) ? $category : ''; $category_type = ( $type == 'post' ) ? 'category_name' : 'portfolio-category'; $offset = ( $offset != '' ) ? $offset : 0; $orientation = ( $orientation != '' ) ? ' ' . $orientation : ' horizontal'; $no_image = ( $no_image == 'true' ) ? $no_image : ''; $fade = ( $fade == 'true' ) ? $fade : 'false'; $js_params = array( 'fade' => ( $fade == 'true' ) ); $data = cs_generate_data_attributes( 'recent_posts', $js_params ); $output = "<div {$id} class=\"{$class}{$orientation}\" {$style} {$data} data-fade=\"{$fade}\" >"; $q = new WP_Query( array( 'orderby' => 'date', 'post_type' => "{$type}", 'posts_per_page' => "{$count}", 'offset' => "{$offset}", "{$category_type}" => "{$category}" ) ); if ( $q->have_posts() ) : while ( $q->have_posts() ) : $q->the_post(); if ( $no_image == 'true' ) { $image_output = ''; $image_output_class = 'no-image'; } else { $image = wp_get_attachment_image_src( get_post_thumbnail_id(), 'entry-cropped' ); $bg_image = ( $image[0] != '' ) ? ' style="background-image: url(' . $image[0] . ');"' : ''; $image_output = '<div class="x-recent-posts-img"' . $bg_image . '></div>'; $image_output_class = 'with-image'; } $output .= '<a class="x-recent-post' . $count . ' ' . $image_output_class . '" href="' . get_permalink( get_the_ID() ) . '" title="' . esc_attr( sprintf( __( 'Permalink to: "%s"', csl18n() ), the_title_attribute( 'echo=0' ) ) ) . '">' . '<article id="post-' . get_the_ID() . '" class="' . implode( ' ', get_post_class() ) . '">' . '<div class="entry-wrap">' . $image_output . '<div class="x-recent-posts-content">' . '<h3 class="h-recent-posts">' . get_the_title() . '</h3>' . '<span class="x-recent-posts-date">' . get_the_date() . '</span>' . '<span class="x-recent-posts-excerpt">' . strip_tags( get_the_excerpt() ) . '</span>' . '</div>' . '</div>' . '</article>' . '</a>'; endwhile; endif; wp_reset_postdata(); $output .= '</div>'; return $output; } add_filter('wp_head', 'custom_recent_posts'); function custom_recent_posts() { remove_shortcode( 'x_recent_posts' ); add_shortcode( 'x_recent_posts', 'x_shortcode_recent_posts_v2' ); }Hope this helps.
January 30, 2017 at 11:49 am #1351098
ANNIEOHParticipantThanks, that works.
Now, if I want to show an image how do I do that?
I changed:
$no_image = ( $no_image == ‘true’ ) ? $no_image : ”;
to
$no_image = ( $no_image == ‘false’ ) ? $no_image : ”;
and changed the shortcode to
[x_recent_posts type=”post” enable_excerpt=”true” count=”1″ no_image=”false” ]
and I now get a placeholder for the image and it is a link to the post.
See it at anniehogsett.com and the bottom of the page.
January 30, 2017 at 1:12 pm #1351193
JadeModeratorHi there,
Please set a Featured Image to the post so that it will be displayed in the recent post featured image area.
Hope this helps.
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1350908 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
