Skip to content

Instantly share code, notes, and snippets.

@rafaehlers
Last active June 29, 2018 05:11
Show Gist options
  • Save rafaehlers/4052dd930d2a797ef059e31344a58b14 to your computer and use it in GitHub Desktop.
Save rafaehlers/4052dd930d2a797ef059e31344a58b14 to your computer and use it in GitHub Desktop.
Shortcode that accepts a category field which is usually displayed as bullet points and turns into a comma separated values string
<?php
//usage [gv_listify field="{Field Merge Tag}"]
add_shortcode( 'gv_listify', 'gv_listify_shortcode' );
function gv_listify_shortcode( $atts ) {
extract( shortcode_atts(
array(
'field' => '',
), $atts )
);
$content = str_replace(',','</li><li>',$field);
$content = '<ul><li>'.$content.'</li></ul>';
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment