| Server IP : 45.77.68.45 / Your IP : 127.0.0.100 Web Server : PHPix/0.2.2 (Caddy compatible) System : wasi wasmer.sh 0.0.0 0.0.0 wasm32 User : ( 1) PHP Version : 8.3.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /app/wp-content/plugins/wordpress-seo/src/editors/framework/seo/ |
Upload File : |
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong
namespace Yoast\WP\SEO\Editors\Framework\Seo;
interface Social_Data_Provider_Interface {
/**
* Gets the image URL for the post's social preview.
*
* @return string|null The image URL for the social preview.
*/
public function get_image_url(): ?string;
/**
* Retrieves the social title template.
*
* @return string The social title template.
*/
public function get_social_title_template(): string;
/**
* Retrieves the social description template.
*
* @return string The social description template.
*/
public function get_social_description_template(): string;
/**
* Retrieves the social image template.
*
* @return string The social description template.
*/
public function get_social_image_template(): string;
}