Skip to content

Instantly share code, notes, and snippets.

@swissspidy
Created March 15, 2022 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swissspidy/12e45ef2f9f254ede2ae74207865dc2c to your computer and use it in GitHub Desktop.
Save swissspidy/12e45ef2f9f254ede2ae74207865dc2c to your computer and use it in GitHub Desktop.
Mini-plugin to stop hiding generated attachments from the WordPress media library
<?php
/**
* Plugin Name: Web Stories Unhide Generated Media
* Description: Mini-plugin to stop hiding generated attachments from the WordPress media library.
* Plugin URI: https://wp.stories.google/
* Author: Pascal Birchler, Google
* Author URI: https://opensource.google.com/
* Version: 0.0.1
* License: Apache License 2.0
* License URI: https://www.apache.org/licenses/LICENSE-2.0
*/
add_filter( 'web_stories_hide_auto_generated_attachments', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment