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
| /* | |
| * Mixins: | |
| */ | |
| //make flex rows a bit easier: | |
| @mixin flex-row( $equalize:stretch ){ | |
| @include display(flex); | |
| @include flex-direction(row); | |
| @include align-items($equalize); | |
| } |
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
| <?php | |
| // loop through the sub-pages of your custom post type | |
| $childpages = new WP_Query( array( | |
| 'post_type' => 'wpkb-article', | |
| 'post_parent' => $this_page, | |
| 'posts_per_page' => 100, | |
| 'orderby' => 'menu_order' | |
| )); | |
| while ( $childpages->have_posts() ) : $childpages->the_post(); ?> |
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
| <?php | |
| /** | |
| * Make BuddyPress Members page obey its Page layout setting | |
| */ | |
| add_filter( 'genesis_pre_get_option_site_layout', 'sk_do_members_page_layout' ); | |
| function sk_do_members_page_layout( $opt ) { | |
| // if the current page is not the members directory, abort. | |
| if ( ! bp_is_members_directory() ) { |
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
| <?php | |
| function mmk_rss_include( $query ) { | |
| if (!$query->is_feed) | |
| return $query; | |
| $query->set( 'post_type' , array( 'post', 'YOUR_POST_TYPE_NAME' ) ); | |
| return $query; |
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
| #! /bin/bash | |
| # Author: Birgit Olzem aka @CoachBirgit | |
| # Version: 1.0 | |
| # Created on: January 19th 2022 | |
| # Requires WP-CLI, cURL, wget | |
| # credits for the origin idea to Jeremy Herve: https://jeremy.hu/dev-environment-laravel-valet-wp-cli/ | |
| ### How to use |
OlderNewer