So I have been trying to add a google +1 button from a wordpress plugin and I am getting errors when adding in the php part of the script I have gotten: <?php if(function_exists('wp_socializer'){ echo wp_socializer('plusone-button', array(Settings)); } ?> Could anyone point me in the right direction / edit the code for me ? Regards Luke
change this line : if(function_exists('wp_socializer'){ PHP: to this : if(function_exists('wp_socializer')){ PHP: You missed one closing bracket....