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 = '
'; if ($query->have_posts()) { while ($query->have_posts()) { $query->the_post(); // Get Custom Data (Price & Artist) $artist = get_post_meta(get_the_ID(), '_art_artist', true) ?: 'Farooquism Studio'; $price = get_post_meta(get_the_ID(), '_art_price', true) ?: 'Inquire for Price'; $img = get_the_post_thumbnail_url(get_the_ID(), 'large'); $link = get_permalink(); // The World Class HTML Structure $output .= '

' . get_the_title() . '

' . esc_html($artist) . '

'; } wp_reset_postdata(); } else { $output .= '

No artwork found in the gallery.

'; } $output .= '
'; return $output; } add_shortcode('art_grid', 'farooquism_art_grid_shortcode');

1 thought on “Hello world!”

Leave a Comment

Your email address will not be published. Required fields are marked *