This tag can be used to save metadata that is compatible with ACF Link fields. See documentation on the 'link' parser for more information on supported attributes and how this element is exported.
parser : 'link'
href : '#'
target : null
<a href="http://monk.com.au" target="_blank" >Monk Media</a>
/*
Exports as:
array (
'title' => 'Monk Media',
'url' => 'http://monk.com.au',
'target' => '_blank',
)
*/
<page id='about' >
<title>About Me</title>
</page>
<a href="about" />
/*
Exports as:
array (
'title' 5=> 'About Me',
'url' => 'http://dev.d/about-me/',
'target' => NULL,
)
*/