Bugfix for broken AJAX polling in V1.3 [inside]
-
Please change the following code (line 1511-1524) in the file live-blogging-plus.php
$q = new WP_Query(array( 'post_type' => 'liveblog_entry', 'tax_query' => array( array( 'taxonomy' => 'liveblog', 'field' => 'name', 'terms' => $id, ), ), 'posts_per_page' => -1, 'orderby' => 'date', 'order' => 'ASC', 'post_status' => 'publish', ));
to
$q = new WP_Query(array( 'post_type' => 'liveblog_entry', 'tax_query' => array( array( 'taxonomy' => 'liveblog', 'field' => 'name', 'terms' => $liveblog_id, ), ), 'posts_per_page' => -1, 'orderby' => 'date', 'order' => 'ASC', 'post_status' => 'publish', ));
to get AJAX polling working! This is true for at least V1.3. I hope it will get fixed in the plugin soon.
- The topic ‘Bugfix for broken AJAX polling in V1.3 [inside]’ is closed to new replies.