Adding in Google Plus Authorship and Publisher Profile to Genesis WordPress Theme

…tag with the rel=”author” or in the case of a Google+ Business page rel=”publisher” attribute set. Like so: <link rel=”author” href=”https://plus.google.com/100574451041083020591“/> or <link rel=”publisher” href=”https://plus.google.com/100574451041083020591“/> You may also have or…

Read More

Change @WordPress from email address and from name sent out from website

Change Default From Email Address

…email address function prefix_email_from( $new_email ) { return ‘admin@newadress.com‘; // Change email address } add_filter(‘wp_mail_from_name’, ‘prefix_name_from’); // Change default WordPress from name function prefix_name_from( $new_name ) { return ‘Company Name’;…

Read More