Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zackeryfretty/75f819bfe5e2c4a0461610a8bf93f4f2 to your computer and use it in GitHub Desktop.
Save zackeryfretty/75f819bfe5e2c4a0461610a8bf93f4f2 to your computer and use it in GitHub Desktop.
Adds a 'Post URL' Field Connector in Beaver Themer that pulls the full permalink of the current post.
if(defined('FL_THEME_BUILDER_VERSION')):
add_action( 'fl_page_data_add_properties', function() {
FLPageData::add_post_property( 'zf_get_post_url', array(
'label' => 'Post URL',
'group' => 'posts',
'type' => 'url',
'getter' => 'get_permalink',
) );
} );
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment