芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/www/itrema/wp-content/plugins/wp-table-reloaded/wp-table-reloaded.php
handle_content_shortcode_table( $atts ); } /** * Add template tag function for "table-info" shortcode to be used anywhere in the template * * This function provides a possibility to show table info data anywhere in a WordPress template, * which is needed for any region of a theme that can not use Shortcodes. * Thus, the function is only available in the frontend part of WordPress. * * @see wp_table_reloaded_get_table_info * @param string|array $table_query Query string like list or array of parameters for Shortcode "table-info" rendering */ function wp_table_reloaded_print_table_info( $table_query ) { echo wp_table_reloaded_get_table_info( $table_query ); } /** * Add function to retrieve the table-info HTML, needed for template tag function wp_table_reloaded_print_table_info * * @uses $WP_Table_Reloaded_Frontend * @param string|array $table_query Query string like list or array of parameters for Shortcode "table-info" rendering */ function wp_table_reloaded_get_table_info( $table_query ) { global $WP_Table_Reloaded_Frontend; if ( is_array( $table_query ) ) $atts = $table_query; else parse_str( $table_query, $atts ); return $WP_Table_Reloaded_Frontend->handle_content_shortcode_table_info( $atts ); } } ?>