Hi Nicklas,
This is possible by adding the following filter to your active theme’s functions.php:
add_filter( 'simple_links__output', function ( $output ) {
$output .= '<ul class="simple-links-list">
<li class="simple-links-item simple-links-fixed">
<a href="https://somewhere.com/some-page">
Fixed Link
</a>
</li>
</ul>';
return $output;
} );
- You will need to change the
href
to where you want this link to go.
- You will need to change “Fixed Link” to the link text you would like.
Have a great day!
OnPoint Plugins