Deprecated on get_the_excerpt
-
get_the_excerpt do not accept parameters, the patch is:
--- a/wp-content/plugins/facebook-thumb-fixer/_facebook-thumb-fixer.php +++ b/wp-content/plugins/facebook-thumb-fixer/_facebook-thumb-fixer.php @@ -372,7 +372,7 @@ function fbfixhead() { if (has_post_thumbnail()) { // Set '$featuredimg' variable for the featured image. $featuredimg = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), "Full"); - $ftf_description = get_the_excerpt($post->ID); + $ftf_description = get_the_excerpt();^M global $post; $ot = get_post_meta($post->ID, 'ftf_open_type', true); if($ot == "") { $default = "article"; } else $default = get_post_meta($post->ID, 'ftf_open_type', true); @@ -391,7 +391,7 @@ function fbfixhead() { '; } //...otherwise, if there is no post image. else { - $ftf_description = get_the_excerpt($post->ID); + $ftf_description = get_the_excerpt();^M global $post; $ot = get_post_meta($post->ID, 'ftf_open_type', true); if($ot == "") { $default = "article"; } else $default = get_post_meta($post->ID, 'ftf_open_type', true); @@ -441,7 +441,7 @@ function fbfixhead() { if (has_post_thumbnail()) { // Set '$featuredimg' variable for the featured image. $featuredimg = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), "Full"); - $ftf_description = get_the_excerpt($post->ID); + $ftf_description = get_the_excerpt();^M global $post; $ot = get_post_meta($post->ID, 'ftf_open_type', true); if($ot == "") { $default = "article"; } else $default = get_post_meta($post->ID, 'ftf_open_type', true); @@ -460,7 +460,7 @@ function fbfixhead() { '; } //...otherwise, if there is no post image. else { - $ftf_description = get_the_excerpt($post->ID); + $ftf_description = get_the_excerpt();^M global $post; $ot = get_post_meta($post->ID, 'ftf_open_type', true); if($ot == "") { $default = "article"; } else $default = get_post_meta($post->ID, 'ftf_open_type', true);
- The topic ‘Deprecated on get_the_excerpt’ is closed to new replies.