Templates
POWER von Gutenberg. Standard Templates mit vordefinierten Blöcken beim Erstellen anzeigen
function prwp_gutenberg_portfolio_template() {
$postTypeTemplate = get_post_type_object('page');
$postTypeTemplate->template = array(
array('core/heading', array(
content => 'Ich bin eine dynamische Überschrift!'
)),
array('core/paragraph', array(
content => 'Ich bin ein dynamischer Text.'
)),
array('core/freeform', array(
content => 'Text im Classic Editor'
)),
array('prwp-blocks/portfolio-listing', array(
align => 'full'
))
);
}
add_action('init', 'prwp_gutenberg_portfolio_template'); ); Last updated
Was this helpful?