How do I add paragraph tags to all of my posts after relying on wpauto?

a quick and dirty way to do this is by running this ONCE: global $post; $posts = new WP_Query(); $posts->query(array(‘posts_per_page’ => -1, ‘post_type’ => ‘post’)); while ($posts->have_posts()): $posts->the_post(); $post->post_content = wpautop($post->post_content); // replaces new line chars with <p>’s wp_update_post($post); // updates the database endwhile; (didn’t test it) But how are you exporting your posts in … Read more

How can I get an XML export of my 1K+ posts WordPress instance?

You guys give up too easily 🙂 This worked for me: <?php require(dirname(dirname(__FILE__)) . ‘/wp-load.php’); require(ABSPATH . ‘wp-admin/includes/admin.php’); require(‘includes/export.php’); ob_start(); export_wp(); $xml = ob_get_clean(); file_put_contents(‘out.xml’, $xml); echo “done” ?>

Migrating WP site to another URL

I’ve written a very simple script that is built to do exactly what you’re talking about. Here’s the basic process you’ll want to follow. On the old server, log-in to PHPmyAdmin and export the database. On the new server, log-in to PHPmyAdmin and create your database. You may need to create a new MySQL user … Read more

Problem: Create a cron job to export posts to a WordPress XML file on server

Your problem is that ob_file ain’t global. You only define it in c3m_export_xml(). Setting global $ob_file in ob_file_callback() gives you an empty file handle. Try this instead: function c3m_export_xml() { $args=array( ‘content’ => ‘posts’, ‘start_date’ => ‘october 2008’, ‘status’ => ‘published’); ob_start(); export_wp($args); $xml = ob_get_clean(); file_put_contents(‘server_path_to_my_file.xml’, $xml); }

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)