This file contains hidden or 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
// With some Bootstrap 4 love. Of course, create a custom template for this. | |
<?php | |
/* do template stuff */ | |
get_header(); ?> | |
<div class="card-body"> | |
<?php | |
global $wpdb; |
This file contains hidden or 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
<!-- Bootstrap 4 Carousel with WordPress Loop --> | |
<?php | |
$args = array( | |
'post_type' => 'post', | |
'category_name' => 'example-category' | |
); | |
$the_query = new WP_Query ( $args ); | |
?> | |
This file contains hidden or 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
//add instead of [submit] in Contact Form 7 (With Bootstrap 4 added) | |
<button type="submit" class="btn btn-lg btn-info btn-rounded">Send Message<i class="far fa-paper-plane fa-fw ml-3"></i></button> | |
// i class rather than <img src=""> with inline styles. | |
<i class="fas fa-spinner ajax-loader fa-pulse fa-4x"></i> |