get_document_title_template() публичный Метод

Get the template string for the Customizer pane document title.
С версии: 4.4.0
public get_document_title_template ( ) : string
Результат string The template string for the document title.
Пример #1
0
 /**
  * Test get_document_title_template() method.
  *
  * @see WP_Customize_Manager::get_document_title_template()
  */
 function test_get_document_title_template()
 {
     $tpl = $this->manager->get_document_title_template();
     $this->assertContains('%s', $tpl);
 }