Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion class.dable.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ protected function get_widget_code( $key ) {
}

public function add_content_wrapper( $content ) {
if (! is_singular() || ! is_main_query() || ! in_the_loop()) {
if ( is_feed() || ! is_singular() ) {
return $content;
}

Expand Down
6 changes: 3 additions & 3 deletions dable-for-wordpress.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
Description: Add Dable widgets and meta tags.
Author: Dable
Text Domain: dable
Version: 3.3.0
Version: 3.3.1
Author URI: http://dable.io
Domain Path: /languages
*/
/**
* @package dable
* @version 3.3.0
* @version 3.3.1
*/

define( 'DABLE_PLUGIN_VERSION', '3.2.6' );
define( 'DABLE_PLUGIN_VERSION', '3.3.1' );
define( 'DABLE_PLUGIN_BASENAME', plugin_basename(__FILE__) );
define( 'DABLE_PLUGIN_DIR', plugin_dir_path(__FILE__));
define( 'DABLE_PLUGIN_URL', plugin_dir_url(__FILE__));
Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,6 @@ No notice
* Tested compatibility with WordPress 6.2
* Removed the news section.
* Fixed bugs related to the Open Graph Meta Tags feature.

= 3.3.1 =
* Fixed compatibility issue with some custom themes.