Image gallery

// Get the current post ID $post_id = get_the_ID(); // Get the ACF field group data $tenon_cheeks_section = get_field(‘tenon_cheeks_section’, $post_id); // Check if the field has data if ($tenon_cheeks_section && is_array($tenon_cheeks_section)) { echo ‘ ‘; // Loop through each item…Continue reading

Allow SVG Files Upload (copy)

/** * Allow SVG uploads for administrator users. * * @param array $upload_mimes Allowed mime types. * * @return mixed */ add_filter( ‘upload_mimes’, function ( $upload_mimes ) { // By default, only administrator users are allowed to add SVGs. //…Continue reading

Allow SVG Files Upload (copy)

/** * Allow SVG uploads for administrator users. * * @param array $upload_mimes Allowed mime types. * * @return mixed */ add_filter( ‘upload_mimes’, function ( $upload_mimes ) { // By default, only administrator users are allowed to add SVGs. //…Continue reading