Created
August 9, 2023 17:20
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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