File ManagerCurrent Directory: wp-content/plugins/wordpress-seo/src/helpers/open-graphLinux appserver-0d5e4f1e-php-cc8da225320a42ba9b7d66cba40b1f03 6.6.123+ #1 SMP PREEMPT_DYNAMIC Wed Mar 11 09:04:28 UTC 2026 x86_64Edit File: values-helper.php <?php namespace Yoast\WP\SEO\Helpers\Open_Graph; /** * A helper object for the filtering of values. */ class Values_Helper { /** * Filters the Open Graph title. * * @param string $title The default title. * @param string $object_type The object type. * @param string $object_subtype The object subtype. * * @return string The open graph title. */ public function get_open_graph_title( $title, $object_type, $object_subtype ) { /** * Allow changing the Open Graph title. * * @param string $title The default title. * @param string $object_subtype The object subtype. */ return \apply_filters( 'Yoast\WP\SEO\open_graph_title_' . $object_type, $title, $object_subtype ); } /** * Filters the Open Graph description. * * @param string $description The default description. * @param string $object_type The object type. * @param string $object_subtype The object subtype. * * @return string The open graph description. */ public function get_open_graph_description( $description, $object_type, $object_subtype ) { /** * Allow changing the Open Graph description. * * @param string $description The default description. * @param string $object_subtype The object subtype. */ return \apply_filters( 'Yoast\WP\SEO\open_graph_description_' . $object_type, $description, $object_subtype ); } /** * Filters the Open Graph image ID. * * @param int $image_id The default image ID. * @param string $object_type The object type. * @param string $object_subtype The object subtype. * * @return string The open graph image ID. */ public function get_open_graph_image_id( $image_id, $object_type, $object_subtype ) { /** * Allow changing the Open Graph image ID. * * @param int $image_id The default image ID. * @param string $object_subtype The object subtype. */ return \apply_filters( 'Yoast\WP\SEO\open_graph_image_id_' . $object_type, $image_id, $object_subtype ); } /** * Filters the Open Graph image URL. * * @param string $image The default image URL. * @param string $object_type The object type. * @param string $object_subtype The object subtype. * * @return string The open graph image URL. */ public function get_open_graph_image( $image, $object_type, $object_subtype ) { /** * Allow changing the Open Graph image URL. * * @param string $image The default image URL. * @param string $object_subtype The object subtype. */ return \apply_filters( 'Yoast\WP\SEO\open_graph_image_' . $object_type, $image, $object_subtype ); } } Upload File Directory Listing NameTypeSizeActions.. (Parent Directory)Dirimage-helper.phpFile3.01 KB Rename | Delete | Editvalues-helper.phpFile2.59 KB Rename | Delete | Edit