Skip to content

Instantly share code, notes, and snippets.

@wplit
Created March 6, 2026 03:34
Show Gist options
  • Select an option

  • Save wplit/ed92f36bd84c544dc262b2322e736a9d to your computer and use it in GitHub Desktop.

Select an option

Save wplit/ed92f36bd84c544dc262b2322e736a9d to your computer and use it in GitHub Desktop.
example custom function outputting two custom field values
<?php
function your_custom_function() {
$output = '<p>' . get_field( 'acf_field_one' ) . '</p>';
$output .= '<p>' . get_field( 'acf_field_two' ) . '</p>';
return $output;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment