• File: title-data-provider-interface.php
  • Full Path: /home/satp2352/public_html/multitasjayautama.com/01/src/editors/framework/seo/title-data-provider-interface.php
  • Date Modified: 05/22/2026 6:32 AM
  • File size: 436 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong
namespace Yoast\WP\SEO\Editors\Framework\Seo;

interface Title_Data_Provider_Interface {

	/**
	 * Retrieves the title template.
	 *
	 * @param bool $fallback Whether to return the hardcoded fallback if the template value is empty. Default true.
	 *
	 * @return string The title template.
	 */
	public function get_title_template( bool $fallback = true ): string;
}