kollapsminoriteten/wp-content/plugins/post-thumb.php

23 lines
445 B
PHP
Raw Permalink Normal View History

2023-04-26 17:39:43 +02:00
<?php
/*
Plugin Name: Post Thumb Shit
Plugin URI:
Description: Remove that damn post-thumb!
Version: 1.0.0
Author URI:
Text Domain:
*/
/**
* Remove annoying thumbnail from single posts.
* @param $post
* @return false|mixed
*/
function checkTheThumbnail($post)
{
return is_single() ? false : $post;
}
add_filter('has_post_thumbnail', 'checkTheThumbnail');
2025-06-09 10:07:10 +02:00
add_filter( 'wp_prevent_unsupported_mime_type_uploads', '__return_false' );