$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>mysql - How to delete posts that does not have a thumbnail?|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

mysql - How to delete posts that does not have a thumbnail?

matteradmin8PV0评论

I have a problem with my blog. The thing is this, all the posts have a thumbnail in this address: wpbv_postmeta-->meta_key-->thumb

And several (A LOT) of posts don't work, because I have made a script that takes videos from a website and publishes in mine.

So, I need to find (I have search in google and here but couldn't find anything) a way to do this:

SELECT * FROM wpbv_postmeta WHERE meta_key='thumb' 

And with the results I have to find which images doesn't exist anymore (they are alocated in a different website).

Once I have located all the images that doesn't exist delete posts where that images are, with the help of post_id

Obviously I don't want that you do all the work, but I have no idea how to do it, if you can explain it to me, or give me links to search will be awesome.

Post a comment

comment list (0)

  1. No comments so far