Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function repeater_function() {
- $output = '<ul>';
- $rows = get_field( 'repeater_field' );
- foreach ($rows as $row )
- $output .= '<li>' . $row['title'] . '</li>';
- }
- $output .= '</ul>';
- return $output;
- }
- add_shortcode( 'my_repeater', 'repeater_function' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement