I did a ton of posts in DataPresser. They have been auto posting and queued for months now.
The problem is, I embedded an unordered list block at the bottom of each post, and now I wish I hadn't, because I hardcoded URLs and text in there.
So in each post, I have
In every post, this block of text is the same. Identically the same.
I have no other unordered lists in my posts. This is the only one.
Is there a way to run a query on my posts (published and scheduled) to remove this block?
Either to trim the last X characters off the end of each post, or to do some sort of regex match?
We're looking at the wp_posts table and the post_content column.
Any help would be appreciated. +Rep for help. TIA.
The problem is, I embedded an unordered list block at the bottom of each post, and now I wish I hadn't, because I hardcoded URLs and text in there.
So in each post, I have
Code:
<ul>
<li><a href="hxxp://site.com/go/123/">123</a></li>
<li><a href="hxxp://site.com/go/456/">456</a></li>
<li><a href="hxxp://site.com/go/789/">789</a></li>
<li><a href="hxxp://site.com/go/136//"><strong>136</strong></a></li>
</ul>
I have no other unordered lists in my posts. This is the only one.
Is there a way to run a query on my posts (published and scheduled) to remove this block?
Either to trim the last X characters off the end of each post, or to do some sort of regex match?
We're looking at the wp_posts table and the post_content column.
Any help would be appreciated. +Rep for help. TIA.