People Group Profile page – FCBH Ninja Table Output- ACF ROL field

function fcbh_display_language_link() { // Get the ACF field ‘rol’ from current post $post_id = get_the_ID(); $rol = get_field(‘ROL’, $post_id); //$language = get_field(‘lang’, $post_id); if ($rol) { $rol_value = esc_attr($rol); // Construct the Ninja Tables shortcode $ninja_shortcode = ‘[ninja_tables id=”36443″ filter=”‘…Continue reading

Lostness- Ninja Table shortcode generation (dynamic as GET var)

function get_filtered_ninja_table_shortcode() { if (isset($_GET[‘filter’])) { // Decode and trim the input $raw_input = urldecode(trim($_GET[‘filter’])); // Check for specific values before sanitizing if ($raw_input === ‘UPG’) { $search_term = ‘Engaged yet Unreached’; } elseif ($raw_input === ‘UUPG’) { $search_term =…Continue reading