[insert_php]
//echo ‘Server date and time is: ‘;
//echo date(‘l, F j, Y \a\t G:i:s’);
$args = array( ‘category_name’ => ‘Workshop’ );
//echo ‘$args’;
//echo ‘args echoed’;
// The Query
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
echo ‘
- ‘;
- WDH’ . get_the_title() . ‘
- ‘ . get_page_link() . ‘
while ( $the_query->have_posts() ) {
$the_query->the_post();
//echo ‘
‘;
//echo ‘
‘;
the_title( ‘
‘, ‘
‘ );
twentyseventeen_edit_link( get_the_ID() );
}
echo ‘
‘;
/* Restore original Post Data */
wp_reset_postdata();
} else {
// no posts found
echo ‘No Post’;
}
[/insert_php]