当然,你在找shortcode API. 这将使您能够编写一段简短的代码,完全满足您的需要。在你的functions.php
:
function wpse246274_wiki( $atts ) {
$link = "http://en.wikipedia.org/wiki/" . $atts[\'link\'];
return $link;
}
add_shortcode( \'wikilink\', \'wpse246274_wiki\' );
你会在帖子中这样使用:
<a href="[wikilink link=\'geography\']">Geography</a>
您甚至可以省略该属性,只需使用
<a href="[wikilink]geography">Geography</a>
但这看起来并不优雅。