Skip to content

Instantly share code, notes, and snippets.

View PudparK's full-sized avatar
🎯
Focusing

Paul Barron PudparK

🎯
Focusing
View GitHub Profile
@FrancesCoronel
FrancesCoronel / sampleREADME.md
Last active March 26, 2024 01:21
A sample README for all your GitHub projects.

Repository Title Goes Here

Frances Coronel

INSERT GRAPHIC HERE (include hyperlink in image)

Subtitle or Short Description Goes Here

ideally one sentence >

@azizultex
azizultex / Dynamic Bootstrap Carousel Custom Post Type Query in Shortcode
Last active November 21, 2018 05:02
Dynamic Bootstrap Carousel Custom Post Type Query in Shortcode
function slider_shortcode() {
$args = array( 'post_type' => 'slider', 'posts_per_page' => 4 );
$loop = new WP_Query( $args );
$return = '<div id="carousel-example-generic" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators">';
while ( $loop->have_posts() ) : $loop->the_post();
$numbers = $loop->current_post;
$active = ( $loop->current_post == 0 ) ? 'class="active"' : '';