예제 #1
0
파일: theme.php 프로젝트: schiz/scrollax
 /**
  *
  */
 function miss_before_entry_sc($filter_args)
 {
     $out = '';
     if (strpos($filter_args['disable'], 'meta') === false) {
         $out .= miss_post_meta($filter_args);
     }
     return $out;
 }
예제 #2
0
파일: app.php 프로젝트: schiz/scrollax
 /**
  *
  */
 function miss_before_entry_sc($filter_args)
 {
     $out = '';
     if ($filter_args['type'] == 'blog_list') {
         if (strpos($filter_args['disable'], 'title') === false) {
             $out .= miss_post_title($filter_args);
         }
         if (strpos($filter_args['disable'], 'meta') === false) {
             $out .= miss_post_meta($filter_args);
         }
     }
     return $out;
 }