Author: 873
$the_query = new WP_Query($args);
if($the_query->have_posts()) :
while($the_query->have_posts()) : $the_query->the_post();
$pid = get_the_ID();
$link = get_permalink($pid);
$title = get_the_title($pid);
$post_date = get_post_field('post_date', $pid);
$fi = get_the_post_thumbnail_url($pid, 'large');
//$category = get_the_category($pid);
$category = get_the_terms($pid, array(
'taxonomy' => 'activities',
));
//var_dump($category);
//$cname = $category[0]->cat_name;
//$category_link = get_category_link($category[0]->cat_ID);
$dm = get_the_modified_date($pid);
$exc = get_the_excerpt($pid);
$dd = get_post_meta( get_post_thumbnail_id(), '_wp_attachment_image_alt', true );
$dd = str_replace('"', '"', $dd);
?>
endwhile;
endif;
?>