芝麻web文件管理V1.00
编辑当前文件:/www/wwwroot/shphe-en.com/wp-content/plugins/bb-plugin/classes/class-fl-builder-shortcodes.php
$post_type, 'posts_per_page' => -1 ); // Build the args array. if ( isset( $attrs['id'] ) ) { $args['orderby'] = 'post__in'; $args['ignore_sticky_posts'] = true; if ( is_numeric( $attrs['id'] ) ) { $args['post__in'] = array( $attrs['id'] ); } else { $args['post__in'] = explode( ',', $attrs['id'] ); } } else if ( isset( $attrs['slug'] ) ) { $args['orderby'] = 'name'; $args['name'] = $attrs['slug']; } else { return; } // Render and return the layout. ob_start(); if ( $builder_active ) { echo '
'; } FLBuilder::render_query( $args, $site_id ); if ( $builder_active ) { echo '
'; } return ob_get_clean(); } } FLBuilderShortcodes::init();