plugin wp_list_table with pagination in front page
-
Hi,
i have create a plugin with wp_liste_table. I dont know how to get data in front page template with pagination.
this my code:function images_section_shortcode() { global $wpdb; $table_name=$wpdb->prefix.'sectionimages'; $results = $wpdb->get_results( "SELECT * FROM $table_name",OBJECT ); $content = ""; ob_start(); $templatefilename = 'images-section-list-template.php'; include dirname( __FILE__ ) . '/' . $templatefilename; return ob_get_clean(); } add_shortcode( 'images_shortcode','images_section_shortcode');
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘plugin wp_list_table with pagination in front page’ is closed to new replies.