PHP code example of page-carbajal / wpexpress

1. Go to this page and download the library: Download page-carbajal/wpexpress library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

page-carbajal / wpexpress example snippets



$args = array();

$query = new WP_Query( $args );

wp_reset_post_data();



$posts = Query::Posts->limit(10)->meta('field', 'value')->get();