Enueue script for bootstrap

If I’m right, you want to get javascript bootstrap via CDN. Try to make it like in the example below. Other scripts you should attach according to this example. You must note your custom scripts should be attached after the bootstrap script if they would be using the bootstrap scripts. function enqueue_js() { wp_enqueue_script( ‘bootstrap_js’, … Read more

How to display a list of authors in bootstrap grid?

Not many ways to style the wp_list_author but you can use the style => ‘list’ argument to display authors in <li> and then style your <ul>as wanted. https://developer.wordpress.org/reference/functions/wp_list_authors/ <div class=”container”> <div class=”row”> <div class=”col-lg-4″> <ul class=”d-flex”> <?php wp_list_authors( array( ‘exclude’ => 4, ‘show_fullname’ => 1, ‘optioncount’ => 1, ‘orderby’ => ‘post_count’, ‘order’ => ‘DESC’, ‘number’ … Read more