I need to do the following:
<?php wp_list_bookmarks('categorize=0&category=X&before=<span>&after=</span>&show_images=1&show_description=1&orderby=url'); ?>
I need to replace the X in category= with the content of a custom field, what is the syntax? I guess use:
<?php the_field('links'); ?> to output the custom field value, but how do I put them together, every way I've tried so far gives errors?
Thanks