Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ************************Custom post shortcode query *********************
- //custom post shortcode query
- function customer_services_shortcode($atts){
- extract( shortcode_atts( array(
- 'title' => '',
- 'dsc' => '',
- 'link' => '',
- 'category' => ''
- ), $atts, 'service' ) );
- $q = new WP_Query(
- array('posts_per_page' => -1, 'post_type' => 'customer_services', 'services_cat' => $category)
- );
- $list = '
- ';
- while($q->have_posts()) : $q->the_post();
- $idd = get_the_ID();
- $service_icon = get_post_meta($idd, 'icon_service', true);
- $list .= '
- ';
- endwhile;
- $list.= '
- ';
- wp_reset_query();
- return $list;
- }
- add_shortcode('service', 'customer_services_shortcode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement