Smart Post Show content hook crash

PHOTO EMBED

Tue Jul 22 2025 09:26:41 GMT+0000 (Coordinated Universal Time)

Saved by @Pulak

add_filter( 'sp_pcp_the_content', function($post_content){
	if (preg_match('/\[smart_post_show id="\d+"\]/', $post_content)) {
		$post_content = preg_replace( '/\[smart_post_show id="\d+"\]/', '', $post_content );
	}
	return $post_content;
} );
content_copyCOPY