How to access WordPress out side the wordpress setup folder (Code Snippets )

    require_once('../blog/wp-load.php');
?>

Recent Posts



        $recent_posts = wp_get_recent_posts(array(‘numberposts’=>3));
        foreach($recent_posts as $recent){
            echo '
  • ' . $recent["post_title"] . '
  • ';
        }
    ?>

    No comments:

    Post a Comment