google.php 611 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin\Views
  6. */
  7. /**
  8. * @var Yoast_Form $yform
  9. */
  10. if ( ! defined( 'WPSEO_VERSION' ) ) {
  11. header( 'Status: 403 Forbidden' );
  12. header( 'HTTP/1.1 403 Forbidden' );
  13. exit();
  14. }
  15. echo '<h2>' . esc_html__( 'Google+ settings', 'wordpress-seo' ) . '</h2>';
  16. printf(
  17. '<p>%s</p>',
  18. esc_html__( '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' )
  19. );
  20. $yform->textinput( 'plus-publisher', __( 'Google Publisher Page', 'wordpress-seo' ) );
  21. do_action( 'wpseo_admin_googleplus_section' );