Skip to content

Instantly share code, notes, and snippets.

@alanef
Created January 5, 2023 19:10
Show Gist options
  • Select an option

  • Save alanef/df14373d866cf79f9cfdfa8dcdde8aae to your computer and use it in GitHub Desktop.

Select an option

Save alanef/df14373d866cf79f9cfdfa8dcdde8aae to your computer and use it in GitHub Desktop.
Code snippet to remove PROTECTED
<?php
/**
* Plugin Name: Remove Protected code snippet
* Description: Remove the protected from the content of a post
**/
add_filter( 'protected_title_format', function ( $format ) {
return '%s';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment