How to disable URL preview in WordPress comments

(Note that this answer deals with URL previewing in the Admin, Comments area. URLs are not ‘previewed’ in what the visitor sees in your posts’ comments.) If you inspect the source of the Comments page (in Admin, Comment area, where a link will be previewed if you hover over it), you will see that the … Read more

How to automatically search my entire site for any content embedded using oEmbed?

In case anyone else wants to know the answer, I was able to find it elsewhere. If you run this SQL query on your database: SELECT * FROM wp_postmeta WHERE (meta_value LIKE ‘%facebook%’) OR (meta_value LIKE ‘%instagram%’) the search results will contain, in-part, a list of all posts with FB/IG oEmbed content. You may have … Read more