// Register the new tag with Textpattern.
\Txp::get('\Textpattern\Tag\Registry')
->register('abc_hello_world');
/**
* Tag to output hello world.
*/
function abc_hello_world($atts, $thing = null)
{
return 'Hello Textpattern world!';
}
Ergebniss
Hello Textpattern world!