What is Nostr?
Terence Eden /
npub1lh0…a5ll
2023-10-02 09:15:02

Terence Eden on Nostr: I have 399 blog posts which don't have a featured image. Guess that's my weekend ...

I have 399 blog posts which don't have a featured image.

Guess that's my weekend sorted!

Here's a one-liner for WP CLI which will find them and print out in a pretty-ish format.

```
foreach (get_posts( array( 'post_type' => 'post', 'post_status' => array('publish'), 'posts_per_page' => -1,) ) as $post) { if(get_the_post_thumbnail($post)== "") { echo $post->post_date . " " . $post->guid . " " . $post->post_title . "\n"; } }
```

#WordPress #Blogging
Author Public Key
npub1lh05slh2nk6h5m3jp7qwtjmrmegtah6nj626g8qdg3a7ds3kg0ss9aa5ll