wordpress

Wordpress Log to Seq
Throwing an idea to the lazyweb #
Hugo hosting and deployment

Part 5 of Moving from WordPress to Hugo

#
Cleaning up content for Hugo version of site

Part 4 of Moving from WordPress to Hugo

#
Exporting content from WordPress for Hugo

Part 3 of Moving from WordPress to Hugo

#
Setting up Hugo locally and choosing a theme

Part 2 of Moving from WordPress to Hugo

#
Why Hugo?

Part 1 of Moving from WordPress to Hugo

#
Removing malicious content from WordPress posts
Sometimes malware will corrupt the database, inserting malicious script tags. Here’s the quick removal approach if you have access to your database directly: <br /> UPDATE wp_posts SET post_content = REPLACE ( post_content, 'BAD SCRIPT TAG', '' );<br /> #