inline link
// Add Shortcode
function inline_link_custom_shortcode( $atts ) {
// Attributes
extract( shortcode_atts(
array(
'link_title' => 'default_title',
'link_url' => 'link_url',
), $atts )
);
}
add_shortcode( 'inline_link', 'inline_link_custom_shortcode' );