Real-Dev-Squad / todo-action-items

A running list of todo items for Real Dev Squad site
MIT License
4 stars 8 forks source link

function __construct() { parent::__construct(); $data['title'] = 'TeamPlayer'; } public function howitworks() { $data['title'] = 'TeamPlayer - How it works!'; load_page('howitworks', $data); } public function faq() { load_page('faq', $data); } #65

Closed Breezyhacker closed 2 years ago

Breezyhacker commented 2 years ago
<?php echo $title; ?>
Breezyhacker commented 2 years ago

function custom_title($title_parts) { $title_parts['title'] = "Page Title"; return $title_parts; } add_filter( 'document_title_parts', 'custom_title' );