Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 3.8.0-alpha.3 #828

Merged
merged 2 commits into from
Jan 15, 2025
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
9 changes: 9 additions & 0 deletions php/classes/rest/class-episodes-rest-controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,15 @@ public function get_items( $request ) {
// Handle query results
$posts = array();

// Prepare Divi content
add_filter( 'the_content', function ( $content ) {
if ( false !== strpos( $content, '[et_pb_' ) ) {
$content = do_shortcode( $content );
}

return $content;
} );

foreach ( $query_result as $post ) {

// Get PostController for Post Type
Expand Down
4 changes: 2 additions & 2 deletions seriously-simple-podcasting.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Plugin Name: Seriously Simple Podcasting
* Version: 3.8.0-alpha.2
* Version: 3.8.0-alpha.3
* Plugin URI: https://castos.com/seriously-simple-podcasting/?utm_medium=sspodcasting&utm_source=wordpress&utm_campaign=wpplugin_08_2019
* Description: Podcasting the way it's meant to be. No mess, no fuss - just you and your content taking over the world.
* Author: Castos
Expand All @@ -22,7 +22,7 @@
exit;
}

define( 'SSP_VERSION', '3.8.0-alpha.2' );
define( 'SSP_VERSION', '3.8.0-alpha.3' );
define( 'SSP_PLUGIN_FILE', __FILE__ );
define( 'SSP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'SSP_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
Expand Down
Loading