Skip to content

Instantly share code, notes, and snippets.

@mahbubme
Created August 18, 2018 10:05
Show Gist options
  • Save mahbubme/7e0444e5a85aebb96d23cf7bc26d94e6 to your computer and use it in GitHub Desktop.
Save mahbubme/7e0444e5a85aebb96d23cf7bc26d94e6 to your computer and use it in GitHub Desktop.
WPUF post edit link
<?php
function wpuf_get_post_edit_link( $post_id ) {
if ( !class_exists( 'WP_User_Frontend' ) || !$post_id ) {
return;
}
$edit_page = (int) wpuf_get_option( 'edit_page_id', 'wpuf_frontend_posting' );
$url = get_permalink( $edit_page );
$url = wp_nonce_url( $url . '?pid=' . $post_id, 'wpuf_edit' );
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment