Custom Post By Category

I don’t think you can find a plugin which supports this type of functionality, you have to write your own plugin.

  • find a slider which supports HTML divs inside it.
  • for goal and the raised amount, you can save them in the custom post type.
  • for the progress bar, you can use this one, this will prevent you to load unnecessary js on load

    <? $args = array(
    'post_type'=> 'services',
    'areas'    => 'painting',
    'order'    => 'ASC'
    );
    
    $the_query = new WP_Query( $args );
    if($the_query->have_posts() ) : while ( $the_query->have_posts() ) : 
    $the_query->the_post(); ?>