Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PHP Using ACF
- -------------------
- <?php if( have_rows('global_typography', 'option') ):
- while( have_rows('global_typography', 'option') ) : the_row();
- echo '.'; $sub_value = the_sub_field('custom_typography_name', 'option'); echo ' {';
- echo '}';
- endwhile;
- endif; ?>
- Automatically-Generated CSS
- -------------------
- .this-is-a-test-heading {}.this-is-a-second-test-heading {}.this-is-a-third-test-heading {}
- What I Actually Want
- -------------------
- .this-is-a-test-heading {
- }
- .this-is-a-second-test-heading {
- }
- .this-is-a-third-test-heading {
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement