Advertisement
Guest User

Untitled

a guest
Nov 28th, 2022
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  1. PHP Using ACF
  2.  
  3. -------------------
  4.  
  5. <?php if( have_rows('global_typography', 'option') ):
  6.     while( have_rows('global_typography', 'option') ) : the_row();
  7.     echo '.'; $sub_value = the_sub_field('custom_typography_name', 'option'); echo ' {';
  8.     echo '}';
  9.     endwhile;
  10. endif; ?>
  11.  
  12.  
  13.  
  14. Automatically-Generated CSS
  15.  
  16. -------------------
  17.  
  18. .this-is-a-test-heading {}.this-is-a-second-test-heading {}.this-is-a-third-test-heading {}
  19.  
  20.  
  21.  
  22.  
  23.  
  24. What I Actually Want
  25.  
  26. -------------------
  27.  
  28. .this-is-a-test-heading {
  29. }
  30. .this-is-a-second-test-heading {
  31. }
  32. .this-is-a-third-test-heading {
  33. }
Tags: CSS php
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement