Integrate Wordpress Post with Cakephp3 Integrate Wordpress Post with Cakephp3 wordpress wordpress

Integrate Wordpress Post with Cakephp3


You can use the "API"

<?phprequire('/the/path/to/your/wp-blog-header.php');$posts = get_posts('numberposts=10&order=ASC&orderby=post_title');foreach ($posts as $post) : setup_postdata( $post ); ?><?php the_date(); echo "<br />"; ?><?php the_title(); ?>    <?php the_excerpt(); ?> <?phpendforeach;?>

Source: http://codex.wordpress.org/Integrating_WordPress_with_Your_Website

Or try WP API ;)