Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
function farooquism_art_grid_shortcode() { // 1. Get the Art Creations from the Database $args = array( 'post_type' => 'creations', // Matches the CPT we created earlier 'posts_per_page' => -1, // Show all art 'orderby' => 'date', 'order' => 'DESC', ); $query = new WP_Query($args); $output = '
No artwork found in the gallery.
'; } $output .= '