[Plugin: Email Users] Excerpt alternative
-
I have made an alternative code to get the excerpt from posts. In my blogs, the users don’t use the more tag, they use the excerpt field… in this case, the plugin use all post to send the email, and this is not what we want.
I have made this changes in email_users_notify_form.php and email_users_options_form.php:
$post_content = explode( '<!--more-->', $post->post_content, 2 ); $post_excerpt = $post_content[0];
for
// first we take the excerpt from the field excerpt it there aren't any we look for "more" tag $post_excerpt = $post->post_excerpt; if ($post_excerpt == "") { $post_content = explode( '<!--more-->', $post->post_content, 2 ); $post_excerpt = $post_content[0]; }
- The topic ‘[Plugin: Email Users] Excerpt alternative’ is closed to new replies.