<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									SQL to delete Topics (along with posts), where tag is like &#039;%unsafe%&#039;? - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 08 Jun 2026 15:15:07 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: SQL to delete Topics (along with posts), where tag is like &#039;%unsafe%&#039;?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/#post-46924</link>
                        <pubDate>Sat, 17 Oct 2020 10:17:42 +0000</pubDate>
                        <description><![CDATA[@mplusplus,
The replies will not be available on front-end and in dashboard. But they&#039;ll not be removed from the database.]]></description>
                        <content:encoded><![CDATA[<p>@mplusplus,</p>
<p>The replies will not be available on front-end and in dashboard. But they'll not be removed from the database.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/#post-46924</guid>
                    </item>
				                    <item>
                        <title>RE: SQL to delete Topics (along with posts), where tag is like &#039;%unsafe%&#039;?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/#post-46923</link>
                        <pubDate>Sat, 17 Oct 2020 09:07:32 +0000</pubDate>
                        <description><![CDATA[@mplusplus,

Will this delete associated replies/posts as well, please?

Yes, the replies/posts will be deleted as well.]]></description>
                        <content:encoded><![CDATA[<p>@mplusplus,</p>
<blockquote>
<p><span>Will this delete associated replies/posts as well, please?</span></p>
</blockquote>
<p>Yes, the <span>replies/posts will be deleted as well.</span></p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Alvina</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/#post-46923</guid>
                    </item>
				                    <item>
                        <title>RE: SQL to delete Topics (along with posts), where tag is like &#039;%unsafe%&#039;?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/#post-46913</link>
                        <pubDate>Fri, 16 Oct 2020 19:57:40 +0000</pubDate>
                        <description><![CDATA[@robert Will this delete associated replies/posts as well, please?
Thanks.]]></description>
                        <content:encoded><![CDATA[<p>@robert Will this delete associated replies/posts as well, please?</p>
<p>Thanks.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>mplusplus</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/#post-46913</guid>
                    </item>
				                    <item>
                        <title>RE: SQL to delete Topics (along with posts), where tag is like &#039;%unsafe%&#039;?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/#post-46903</link>
                        <pubDate>Fri, 16 Oct 2020 12:51:42 +0000</pubDate>
                        <description><![CDATA[Hi @mplusplus,
Yes, it&#039;s possible. Here is the SQL. Just replace wp_ table prefix if it&#039;s different for your WordPress database.
DELETE FROM `wp_wpforo_topics` WHERE `tags` LIKE &#039;%unsafe%&#039;...]]></description>
                        <content:encoded><![CDATA[<p>Hi @mplusplus,</p>
<p>Yes, it's possible. Here is the SQL. Just replace <strong><span style="color: #ff0000">wp_</span></strong> table prefix if it's different for your WordPress database.</p>
<pre><span style="font-size: 14pt">DELETE FROM `wp_wpforo_topics` WHERE `tags` LIKE '%unsafe%'</span></pre>
<p>After executing this SQL, go to Dashboard &gt; Forums &gt; Dashboard admin page and click these buttons:</p>
<ol>
<li>Delete All Caches</li>
<li>Update Forum Statistic</li>
<li>Update Topic Statistic</li>
<li>Update User Statistic</li>
<li>Delete All Caches (again)</li>
</ol>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/#post-46903</guid>
                    </item>
				                    <item>
                        <title>SQL to delete Topics (along with posts), where tag is like &#039;%unsafe%&#039;?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/#post-46829</link>
                        <pubDate>Tue, 13 Oct 2020 20:57:03 +0000</pubDate>
                        <description><![CDATA[Hi there
Will it be possible for you to provide SQL to delete Topics (along with posts), where TAG is like &#039;%unsafe%&#039;, please?
Thanks.]]></description>
                        <content:encoded><![CDATA[<p>Hi there</p>
<p>Will it be possible for you to provide SQL to delete Topics (along with posts), where TAG is like '%unsafe%', please?</p>
<p>Thanks.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>mplusplus</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/sql-to-delete-topics-along-with-posts-where-tag-is-like-unsafe/#post-46829</guid>
                    </item>
							        </channel>
        </rss>
		