Beispiel #1
0
 static function wp_title($title, $sep, $seplocation)
 {
     return is_codeigniter() ? WPCI::get_title($sep, $seplocation) : $title;
 }
Beispiel #2
0
 function title($title = null)
 {
     if ($title !== null) {
         WPCI::set_title($title);
     }
     return WPCI::get_title();
 }