Dashboard
PHP:
8.0.30
OS:
Linux
User:
hoozgot
/
/
home
/
hoozgot
/
www
/
miolobyjools
/
wp-content
/
plugins
/
wp-seopress
/
inc
/
admin
/
sections
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Social.php
<?php /** * Social * * @package Sections */ defined( 'ABSPATH' ) || exit( 'Please don’t call the plugin directly. Thanks :)' ); /** * Print section info social knowledge */ function seopress_print_section_info_social_knowledge() { ?> <div class="sp-section-header"> <h2> <?php esc_attr_e( 'Knowledge Graph', 'wp-seopress' ); ?> </h2> </div> <p> <?php esc_attr_e( 'Configure Google Knowledge Graph. This will print a schema for search engines on your homepage.', 'wp-seopress' ); ?> </p> <p class="seopress-help"> <a href="https://developers.google.com/search/docs/guides/enhance-site" target="_blank"> <?php esc_attr_e( 'Learn more on Google official website.', 'wp-seopress' ); ?> </a> <span class="dashicons dashicons-external"></span> </p> <?php } /** * Print section info social accounts */ function seopress_print_section_info_social_accounts() { ?> <div class="sp-section-header"> <h2> <?php esc_attr_e( 'Your social accounts', 'wp-seopress' ); ?> </h2> </div> <div class="seopress-notice"> <p> <?php esc_attr_e( 'Link your site with your social accounts.', 'wp-seopress' ); ?> <p> <?php esc_attr_e( 'Use markup on your website to add your social profile information to a Google Knowledge panel.', 'wp-seopress' ); ?> </p> <p> <?php esc_attr_e( 'Knowledge panels prominently display your social profile information in some Google Search results.', 'wp-seopress' ); ?> </p> <p> <?php esc_attr_e( 'Filling in these fields does not guarantee the display of this data in search results.', 'wp-seopress' ); ?> </p> </div> <?php } /** * Print section info social facebook */ function seopress_print_section_info_social_facebook() { $docs = seopress_get_docs_links(); ?> <div class="sp-section-header"> <h2> <?php esc_attr_e( 'Facebook (Open Graph)', 'wp-seopress' ); ?> </h2> </div> <p> <?php esc_attr_e( 'Manage Open Graph data. These metatags will be used by Facebook, Pinterest, LinkedIn, WhatsApp... when a user shares a link on its own social network. Increase your click-through rate by providing relevant information such as an attractive image.', 'wp-seopress' ); ?> <?php echo wp_kses_post( seopress_tooltip_link( esc_url( $docs['social']['og'] ), esc_attr__( 'Manage Facebook Open Graph and X Cards metas - new window', 'wp-seopress' ) ) ); ?> </p> <div class="seopress-notice"> <p> <?php echo wp_kses_post( __( 'We generate the <strong>og:image</strong> meta in this order:', 'wp-seopress' ) ); ?> </p> <ol> <li> <?php esc_attr_e( 'Custom OG Image from SEO metabox', 'wp-seopress' ); ?> </li> <li> <?php esc_attr_e( 'Post thumbnail / Product thumbnail (Featured image)', 'wp-seopress' ); ?> </li> <li> <?php esc_attr_e( 'Global OG Image set in SEO > Social > Open Graph', 'wp-seopress' ); ?> </li> <li> <?php esc_attr_e( 'Site icon from the Customizer', 'wp-seopress' ); ?> </li> </ol> </div> <?php } /** * Print section info social twitter */ function seopress_print_section_info_social_twitter() { $docs = seopress_get_docs_links(); ?> <div class="sp-section-header"> <h2> <?php esc_attr_e( 'X', 'wp-seopress' ); ?> </h2> </div> <p> <?php esc_attr_e( 'Manage your X Cards.', 'wp-seopress' ); ?> <?php echo wp_kses_post( seopress_tooltip_link( esc_url( $docs['social']['og'] ), esc_attr__( 'Manage Facebook Open Graph and X Cards metas - new window', 'wp-seopress' ) ) ); ?> </p> <div class="seopress-notice"> <p> <?php echo wp_kses_post( __( 'We generate the <strong>twitter:image</strong> meta in this order:', 'wp-seopress' ) ); ?> </p> <ol> <li> <?php esc_attr_e( 'Custom X image from SEO metabox', 'wp-seopress' ); ?> </li> <li> <?php esc_attr_e( 'Post thumbnail / Product thumbnail (Featured image)', 'wp-seopress' ); ?> </li> <li> <?php esc_attr_e( 'Global twitter:image set in SEO > Social > X Cards', 'wp-seopress' ); ?> </li> </ol> </div> <?php } /** * Print section info social linkedin */ function seopress_print_section_info_social_linkedin() { ?> <div class="sp-section-header"> <h2> <?php esc_attr_e( 'LinkedIn', 'wp-seopress' ); ?> </h2> </div> <p> <?php esc_attr_e( 'LinkedIn uses the oEmbed JSON link to generate the share of your post, by retrieving the post title, its content and its featured image.', 'wp-seopress' ); ?> </p> <div class="seopress-notice"> <p> <?php echo wp_kses_post( __( 'We generate the <strong>thumbnail URL</strong> of the oEmbed JSON feed in this order:', 'wp-seopress' ) ); ?> </p> <ol> <li> <?php esc_attr_e( 'Custom OG Image from SEO metabox', 'wp-seopress' ); ?> </li> <li> <?php esc_attr_e( 'Post thumbnail / Product category thumbnail (Featured image)', 'wp-seopress' ); ?> </li> </ol> </div> <?php } /** * Print section info social fediverse */ function seopress_print_section_info_social_fediverse() { ?> <div class="sp-section-header"> <h2> <?php esc_attr_e( 'Mastodon', 'wp-seopress' ); ?> </h2> </div> <?php }
Save
Cancel