<?php
/*
Plugin Name: WPM Image Holder
Plugin URI: https://wp-masters.com
Description: Set Thumbnail to All Posts where Image is not set
Author: WP Masters
Version: 1.0
*/
class ImageHolders {
/**
* Initialise functions
*/
public function __construct()
{
// Put hooks here and look at the example how set function to hooks
add_filter( 'has_post_thumbnail', [$this,'check_post_is_has_thumbnail'], 10, 3 );
}
/**
* Check Posts is has Image before Loop in FrontEnd
*/
public function check_post_is_has_thumbnail($has_thumbnail, $post, $thumbnail_id)
{
if($has_thumbnail == false) {
}
return true;
}
}
new ImageHolders();
В этом участке кода мне нужно использовать какую-то функцию которая задаст для поста изображение у которого его нет (по URL)
if($has_thumbnail == false) {
}