google.php 541 Bytes
Newer Older
imac's avatar
imac committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php
/**
 * @package WPSEO\Admin\Views
 */

if ( ! defined( 'WPSEO_VERSION' ) ) {
	header( 'Status: 403 Forbidden' );
	header( 'HTTP/1.1 403 Forbidden' );
	exit();
}

echo '<h2>' . esc_html__( 'Google+ settings', 'wordpress-seo' ) . '</h2>';

printf( '<p>%s</p>', __( 'If you have a Google+ page for your business, add that URL here and link it on your Google+ page\'s about page.', 'wordpress-seo' ) );

$yform->textinput( 'plus-publisher', __( 'Google Publisher Page', 'wordpress-seo' ) );

do_action( 'wpseo_admin_googleplus_section' );