Homepage – Total PG stats – shortcode generation based on field name

// Helper function to get a value from the summary table function get_pg_summary_value($field_name) { global $wpdb; $valid_fields = [ ‘total_pop’, ‘total_pgs’, ‘total_uupgs’, ‘total_uupg_pop’, ‘total_upgs’, ‘total_upg_pop’, ‘total_nupgs’, ‘total_nupgs_pop’, ‘extra1’, ‘extra2’, ]; // Prevent SQL injection by only allowing known fields if…Continue reading

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