Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Njk

Njlpp

// Add Shortcode
function post_link_shortcodehttps://www.facebook.com/profile.php?id=100036998504172( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'id' => '',
		),
		$atts,
		'Pan Ei Phyu'
	);

	// Return only if has ID attribute
	if ( isset( $atts['id'] ) ) {
		return '<a href="' . get_permalink( $atts['id'] ) . '">' . get_the_title( $atts['id'] ) . '</a>';
	https://www.facebook.com/profile.php?id=100036998504172

}
add_shortcode( 'link-to-posthttps://www.facebook.com/profile.php?id=100036998504172', 'post_link_shortcodehttps://www.facebook.com/profile.php?id=100036998504172' );