Я делаю плагин который будет проверять есть ли у поста картинка или нет, мне нужно в функцию передавать $post_id, но я не знаю откуда его брать
/*
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_action('init', [$this, 'check_post_is_has_thumbnail']);
}
/**
* Check Posts is has Image before Loop in FrontEnd
*/
public function check_post_is_has_thumbnail($post_id)
{
// Your function is going here
}
}
new ImageHolders();
Может кто-то помочь?