예제 #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();
 }