How do those shortcodes work.
I tried added my own entry into the shortcodes.php
`add_shortcode(‘test’, __(‘Test Shortcode’), __(‘Test Shortcode’),
function (Shortcode $shortcode) {
return Theme::partial(‘shortcodes.test.index’, compact(‘shortcode’));
});
shortcode()->setAdminConfig(‘test’, function (array $attributes) {
return Theme::partial(‘shortcodes.test.admin’, compact(‘attributes’));
});`
Currently it just echoes:
[test title=“dasdad” subtitle=“dasdas”][/test]
What else do I have to do to render on the front end?
The test shortcode files: index,admin are currently copies of ‘how-it-works’ shortcode so the problem is probably not there.