- This topic has 5 replies, 2 voices, and was last updated 9 years, 7 months ago by Sakin.
-
AuthorPosts
-
April 3, 2015 at 7:34 pm #55012rickm813Participant
The excerpt on the slider is coming from my old theme instead of taking it from my current page content.
April 4, 2015 at 1:33 am #55061SakinKeymaster@rickm813: It will take the page content before more tag . So, you can edit that page and add more tag. So, all the text above more tag will be shown in as excerpt in slider when choosing Featured Page Slider. For more about more tag, check this post http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/
April 6, 2015 at 9:00 pm #55211rickm813ParticipantThe excerpt is ignoring the more tag. The excerpt on the slider is coming from my old theme on the page edit screen in the excerpt field. In this theme there isn’t access to that field in the page editor.
April 7, 2015 at 11:15 pm #55295SakinKeymaster@rickm813: your old theme must have added in page excerpt box. If you want to add it in this theme as well then build child theme, you can download it from http://catchthemes.com/blog/create-child-theme-wordpress/ and add the following code in your child theme functions.php file.
add_action( 'init', 'catchresponsive_add_excerpts_to_pages' ); function catchresponsive_add_excerpts_to_pages() { add_post_type_support( 'page', 'excerpt' ); }
April 8, 2015 at 9:18 pm #55352rickm813ParticipantI don’t want to add the box but I need to get rid of the old excerpts that used to be in the box. The old excerpts are getting in the way of the read more tag.
April 9, 2015 at 10:28 am #55384 -
AuthorPosts
- The topic ‘Excerpt On Slider’ is closed to new replies.