コード例 #1
0
 /**
  * Gets the shortcode parameters and instantiate plugin objects
  * @param $atts
  * @param $content
  */
 static function catlist_func($atts, $content = null)
 {
     $atts = shortcode_atts(array('id' => '0', 'name' => '', 'orderby' => 'date', 'order' => 'desc', 'numberposts' => '5', 'date' => 'no', 'date_tag' => '', 'date_class' => '', 'dateformat' => get_option('date_format'), 'author' => 'no', 'author_tag' => '', 'author_class' => '', 'template' => 'default', 'excerpt' => 'no', 'excerpt_size' => '55', 'excerpt_strip' => 'yes', 'excerpt_overwrite' => 'no', 'excerpt_tag' => '', 'excerpt_class' => '', 'exclude' => '0', 'excludeposts' => '0', 'offset' => '0', 'tags' => '', 'exclude_tags' => '', 'content' => 'no', 'content_tag' => '', 'content_class' => '', 'catlink' => 'no', 'catlink_string' => '', 'catlink_tag' => '', 'catlink_class' => '', 'comments' => 'no', 'comments_tag' => '', 'comments_class' => '', 'thumbnail' => 'no', 'thumbnail_size' => 'thumbnail', 'thumbnail_class' => '', 'title_tag' => '', 'title_class' => '', 'post_type' => '', 'post_status' => '', 'post_parent' => '0', 'post_suffix' => '', 'class' => 'lcp_catlist', 'customfield_name' => '', 'customfield_value' => '', 'customfield_display' => '', 'customfield_orderby' => '', 'taxonomy' => '', 'categorypage' => '', 'category_count' => '', 'morelink' => '', 'morelink_class' => '', 'morelink_tag' => '', 'posts_morelink' => '', 'posts_morelink_class' => '', 'year' => '', 'monthnum' => '', 'search' => '', 'link_target' => '', 'pagination' => 'no', 'instance' => '0'), $atts);
     if ($atts['pagination'] == 'yes') {
         lcp_pagination_css();
     }
     $catlist_displayer = new CatListDisplayer($atts);
     return $catlist_displayer->display();
 }
コード例 #2
0
 /**
  * Gets the shortcode parameters and instantiate plugin objects
  * @param $atts
  * @param $content
  */
 static function catlist_func($atts, $content = null)
 {
     $atts = shortcode_atts(array('id' => '0', 'name' => '', 'orderby' => '', 'order' => '', 'numberposts' => '', 'date' => 'no', 'date_tag' => '', 'date_class' => '', 'dateformat' => get_option('date_format'), 'date_modified' => '', 'date_modified_tag' => '', 'date_modified_class' => '', 'author' => 'no', 'author_posts_link' => 'no', 'author_tag' => '', 'author_class' => '', 'author_posts' => '', 'template' => '', 'excerpt' => 'no', 'excerpt_size' => '55', 'excerpt_strip' => 'yes', 'excerpt_overwrite' => 'no', 'excerpt_tag' => '', 'excerpt_class' => '', 'exclude' => '0', 'excludeposts' => '0', 'offset' => '0', 'tags' => '', 'exclude_tags' => '', 'currenttags' => '', 'content' => 'no', 'content_tag' => '', 'content_class' => '', 'display_id' => 'no', 'catlink' => 'no', 'catname' => 'no', 'catlink_string' => '', 'catlink_tag' => '', 'catlink_class' => '', 'child_categories' => 'yes', 'comments' => 'no', 'comments_tag' => '', 'comments_class' => '', 'starting_with' => '', 'thumbnail' => 'no', 'thumbnail_size' => 'thumbnail', 'thumbnail_class' => '', 'force_thumbnail' => '', 'title_tag' => '', 'title_class' => '', 'title_limit' => '0', 'post_type' => '', 'post_status' => '', 'post_parent' => '0', 'post_suffix' => '', 'show_protected' => 'no', 'class' => 'lcp_catlist', 'conditional_title' => '', 'conditional_title_tag' => '', 'conditional_title_class' => '', 'customfield_name' => '', 'customfield_value' => '', 'customfield_display' => '', 'customfield_display_glue' => '', 'customfield_display_name' => '', 'customfield_display_name_glue' => ' : ', 'customfield_display_separately' => 'no', 'customfield_orderby' => '', 'customfield_tag' => '', 'customfield_class' => '', 'taxonomy' => '', 'terms' => '', 'categorypage' => '', 'category_count' => '', 'category_description' => 'no', 'morelink' => '', 'morelink_class' => '', 'morelink_tag' => '', 'posts_morelink' => '', 'posts_morelink_class' => '', 'year' => '', 'monthnum' => '', 'search' => '', 'link_target' => '', 'pagination' => 'no', 'pagination_next' => '>>', 'pagination_prev' => '<<', 'no_posts_text' => "", 'instance' => '0', 'no_post_titles' => 'no', 'link_titles' => true, 'link_dates' => 'no'), $atts);
     if ($atts['numberposts'] == '') {
         $atts['numberposts'] = get_option('numberposts');
     }
     if ($atts['pagination'] == 'yes' || get_option('lcp_pagination') === 'true' && $atts['pagination'] !== 'false') {
         lcp_pagination_css();
     }
     $catlist_displayer = new CatListDisplayer($atts);
     return $catlist_displayer->display();
 }