Skip to content

Instantly share code, notes, and snippets.

@pickplugins
Created April 30, 2020 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pickplugins/d546e658fa1f10e9bbe0c13e6572bab0 to your computer and use it in GitHub Desktop.
Save pickplugins/d546e658fa1f10e9bbe0c13e6572bab0 to your computer and use it in GitHub Desktop.
add_action('post_grid_layout_element_excerpt', 'post_grid_layout_element_excerpt_land');
function post_grid_layout_element_excerpt_land($args){
$land = get_post_meta ( get_the_ID(), 'land', true);
echo '<p>'.$land.'</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment