コード例 #1
0
ファイル: WPCI.php プロジェクト: allviss/wp-ci
 static function wp_title($title, $sep, $seplocation)
 {
     return is_codeigniter() ? WPCI::get_title($sep, $seplocation) : $title;
 }
コード例 #2
0
ファイル: pluggable.php プロジェクト: asalce/wp-ci
 function title($title = null)
 {
     if ($title !== null) {
         WPCI::set_title($title);
     }
     return WPCI::get_title();
 }