View GraphQL Repo Query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
user (login: "PudparK") { | |
name | |
avatarUrl | |
repositories (first: 100) { | |
nodes { | |
name | |
createdAt | |
description | |
homepageUrl |
View Dynamic Bootstrap Carousel Custom Post Type Query in Shortcode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"' : ''; |