get_all_registered(); unset($blocks['greentreelabs/post-snippets-block']); return array_keys( $blocks ); } add_filter('post_snippets_snippets_list','remove_inActiveSnippets'); function remove_inActiveSnippets($snippets) { $active_snippets = array(); foreach($snippets as $key => $snippet) { if($snippet['snippet_status']==true) { array_push($active_snippets, $snippets[$key]); } } return $active_snippets; } // Adding the ps update notification add_action('admin_notices', 'ps_plugin_update_notification'); function ps_plugin_update_notification() { $ps_prvious_version = 'https://downloads.wordpress.org/plugin/post-snippets.3.1.7.zip'; if ( is_admin() ) { if(isset($_REQUEST['ps_update_msg']) && !empty($_REQUEST['ps_update_msg'])) { update_option('ps_update_msg', 'dismissed'); } if(empty(get_option('ps_update_msg')) || 'dismissed' != get_option('ps_update_msg')) { echo '

Thank you to updating Post Snippets v 4.0, we have recoded the entire plugin please check your all snippets if there is any issue you can download the previous version from here

'; } } }