4. Blog Slider Shortcode

/** * Blog Slider Shortcode [blog_shortcodes] */ function blog_shortcodes(){ ob_start(); $query = new WP_Query( array( ‘post_type’ => ‘post’ , ‘posts_per_page’ => ’20’) ); $i=1; if ( $query->have_posts() ) : ?>Continue reading

3. ACF Options Pages

/** * Registriert ACF Optionsseiten. */ //ACF OPTIONS PAGE if( function_exists(‘acf_add_options_page’) ) { acf_add_options_page(‘Algemene instellingen’); acf_add_options_page(‘Actieproduct’); acf_add_options_page(‘Actie balk header’); acf_add_options_page(‘Best Selling Products’); }Continue reading

2. Widget Areas Registration

/** * Registriert Footer- und Sidebar-Widget-Bereiche. */ function tutsplus_widgets_init() { // First footer widget area, located in the footer. Empty by default. register_sidebar( array( ‘name’ => __( ‘First Footer Widget Area’, ‘tutsplus’ ), ‘id’ => ‘first-footer-widget-area’, ‘description’ => __( ‘The…Continue reading

5. Product Slider Shortcode

/** * Product Slider Shortcode [product_shortcodes] */ function product_shortcodes(){ ob_start(); $query = new WP_Query( array( ‘post_type’ => ‘product’ , ‘posts_per_page’ => ’30’ , ‘orderby’ => ‘ASC’) ); $i=1; if ( $query->have_posts() ) : ?>Continue reading

Untitled Snippet

function wpb_copyright() { global $wpdb; $copyright_dates = $wpdb->get_results(” SELECT YEAR(min(post_date_gmt)) AS firstdate, YEAR(max(post_date_gmt)) AS lastdate FROM $wpdb->posts WHERE post_status = ‘publish’ “); $output = ”; if($copyright_dates) { $copyright = “© ” . $copyright_dates[0]->firstdate; if($copyright_dates[0]->firstdate != $copyright_dates[0]->lastdate) { $copyright .= ‘-‘…Continue reading

MemberPress: Shortcode To Display Manage Sub-Accounts Link

add_shortcode( ‘mepr-subaccount-link’, function() { global $wpdb; $user = MeprUtils::get_currentuserinfo(); if ( ! $user ) { return; } $subaccount_link = ”; $caid = get_user_meta( $user->ID, ‘mpca_corporate_account_id’, true ); if ( empty( $caid ) ) { $query = $wpdb->prepare( “SELECT uuid FROM…Continue reading

MemberPress: Unenrolled Course Shortcode

add_shortcode(‘mpcs-unenrolled-courses’, function() { $unenrolled_courses = array(); $current_user = MeprUtils::get_currentuserinfo(); $mepr_user = new MeprUser( $current_user->ID ); $courses = get_posts( array( ‘post_type’ => ‘mpcs-course’, ‘post_status’ => ‘publish’, ‘posts_per_page’ => ‘-1’, ‘orderby’ => ‘title’, ‘order’ => ‘ASC’ )); if (false == MeprUtils::is_logged_in_and_an_admin()) {…Continue reading