28 lines
747 B
PHP
28 lines
747 B
PHP
<?php
|
|
/**
|
|
* WPSEO plugin file.
|
|
*
|
|
* @package WPSEO\Admin\Views
|
|
*
|
|
* @uses Yoast_Form $yform Form object.
|
|
*/
|
|
|
|
if ( ! defined( 'WPSEO_VERSION' ) ) {
|
|
header( 'Status: 403 Forbidden' );
|
|
header( 'HTTP/1.1 403 Forbidden' );
|
|
exit();
|
|
}
|
|
|
|
$social_profiles_help = new WPSEO_Admin_Help_Panel(
|
|
'social-accounts',
|
|
__( 'Learn more about your social profiles settings', 'wordpress-seo' ),
|
|
__( 'To let search engines know which social profiles are associated to this site, enter your site social profiles data below.', 'wordpress-seo' ) . ' ' .
|
|
__( 'If a Wikipedia page for you or your organization exists, add it too.', 'wordpress-seo' ),
|
|
'has-wrapper'
|
|
);
|
|
|
|
echo '<div id="yoast-social-profiles"></div>';
|
|
|
|
|
|
do_action( 'wpseo_admin_other_section' );
|