ACF Year Started to play
$date = get_field(‘years_playing’); echo substr($date, 0, 4);Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
$date = get_field(‘years_playing’); echo substr($date, 0, 4);Continue reading
$meta = get_post_custom(); echo print_r($meta);Continue reading
$starNumber = get_field(wpdiscuz_post_rating_wpd_overall_rhythm); echo ‘ ‘; for($x=1;$xContinue reading
if( have_rows(‘tone_amp’) ): ?> Amps ” alt=”” />Continue reading
/** * Create a secondary admin toolbar in the top right with integrated plugin/users search * * @author mccannex * * Changelog * 2024-08-01 – Fixed issue with crashing admin backend because WP core changed priority on certain hooks *…Continue reading
add_filter( ‘aioseo_breadcrumbs_trail’, function( $crumbs ) { if(is_singular(‘post’) || is_category()){ $blog = [ ‘label’ => ‘Resources’, ‘link’ => ‘https://whatisnosy.com/resources’, ‘type’ => ” ]; array_splice( $crumbs, 0, 0, [$blog] ); } return $crumbs; }, 10, 2);Continue reading
function append_language_to_external_links($content) { // Get the current language of your blog $current_language = apply_filters( ‘wpml_current_language’, NULL ); if ($current_language == “en”){ $current_language = “”; } // Create a DOMDocument instance to parse the content $dom = new DOMDocument(); libxml_use_internal_errors(true); //…Continue reading
do_action( ‘qm/debug’, ‘[EventHelpers] Registering’ ); function current_events_filter($data) { // Get current time in GMT $now = new \DateTime(‘now’); $now->setTime(0, 0); $filtered = array_filter($data, function($element) use ($now) { if(isset($element->post_date)) { $post_date = new \DateTime($element->post_date); $post_date->setTime(0, 0); if($post_date >= $now) { return…Continue reading