I am being facing this problem since the last 8 hours, my nose is almost on the keyboard... I started searching for a solution to put a code on the header.php of my Wordpress for facebook og:image. It seems simple BUT the page always stop loading when reaching the line of code so it is always a white page without any information.
Page stops loading when reaches <?php echo get_fbimage(); ?> - No solution
Here is the line: <meta property="og:image" content="<?php echo get_fbimage(); ?>"/>
1- If I remove that line or the <?php echo get_fbimage(); ?>, everything goes well...
2- Even without the function get_fbimage() on functions.php, it doesn't work.
Here is the page online: http://www.contagiarte.pt/centroformacaocultural/formacao/formacao-fixa/yoga/
I need to get a solution to fix this or alternative solution for getting Facebook pulling the correct image of each wordpress page. Thank's in advance.
Here goes the first part of header.php code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://opengraphprotocol.org/schema/"
xmlns:fb="http://www.facebook.com/2008/fbml" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<title><?php if (is_home()) { ?><?php bloginfo('name'); ?> - <?php bloginfo('description'); ?><?php } else { ?><?php wp_title($sep = ''); ?> - <?php bloginfo('name'); ?><?php } ?></title>
<meta http-equiv="content-type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />
<!-- Facebook Open Graph -->
<meta property="fb:app_id" content="155171734506350" />
<meta property="og:title" content="<?php the_title(); ?>"/>
<meta property="og:description" content="<?php
if ( function_exists('wpseo_get_value') ) {
echo wpseo_get_value('metadesc');
} else {
echo $post->post_excerpt;
}
?>"/>
<meta property="og:url" content="<?php the_permalink(); ?>"/>
<meta property="og:type" content="<?php
if (is_single() || is_page()) { echo "article"; } else { echo "website";}
?>"/>
<meta property="og:site_name" content="<?php bloginfo('name'); ?>"/>
<meta property="og:image" content="<?php echo get_fbimage(); ?>"/>
<meta name="description" content="<?php bloginfo('description') ?>" />
<?php if(is_search()) { ?>
<meta name="robots" content="noindex, nofollow" />
<?php }?>
get_fbimage()there is just so much anyone can do to help. – JakeGould Jan 25 at 4:21define('WP_DEBUG', true);inwp-config.phpto see if this gives you any insight? – cpilko Jan 25 at 4:57