[Plugin: Rotating Posts] Display Excerpt not content
-
I noticed a few people had been searching for a way to display the excerpt rather than full content on the Rotating Posts Plugin.
Easy fix:
Find in rotating-posts.php around line 159
if (!$rp_custom_content)
{
$postContent = get_the_content(get_option(RP_OPTION_READ_MORE));
$postContent = apply_filters(‘the_content’, $postContent);
$postContent = str_replace(‘]]>’, ‘]]>’, $postContent);
}and replace it with:
if (!$rp_custom_content)
{
$postContent = get_the_excerpt(get_option(RP_OPTION_READ_MORE));
$postContent = apply_filters(‘the_content’, $postContent);
$postContent = str_replace(‘]]>’, ‘]]>’, $postContent);
}
- The topic ‘[Plugin: Rotating Posts] Display Excerpt not content’ is closed to new replies.