esc_html__( 'Page Content', 'blockstrap' ) )
);
}
/**
* Register Block Patterns.
*/
if ( function_exists( 'register_block_pattern' ) ) {
register_block_pattern(
'blockstrap/page-content-404-default',
array(
'title' => esc_html__( '404 Content', 'blockstrap' ),
'categories' => array( 'page-content' ),
'content' => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
'blockstrap_pattern_page_content_404_default',
''
) : '
' . __( 'It looks like nothing was found at this location.', 'blockstrap' ) . '
',
)
);
register_block_pattern(
'blockstrap/page-content-archive-default',
array(
'title' => esc_html__( 'Archive Content', 'blockstrap' ),
'categories' => array( 'page-content' ),
'content' => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
'blockstrap_pattern_page_content_archive_default',
''
) : '
',
)
);
register_block_pattern(
'blockstrap/page-content-page-default',
array(
'title' => esc_html__( 'Page Content', 'blockstrap' ),
'categories' => array( 'page-content' ),
'content' => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
'blockstrap_pattern_page_content_page_default',
''
) : '
',
)
);
register_block_pattern(
'blockstrap/page-content-post-default',
array(
'title' => esc_html__( 'Post Content', 'blockstrap' ),
'categories' => array( 'page-content' ),
'content' => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
'blockstrap_pattern_page_content_post_default',
''
) : '
',
)
);
register_block_pattern(
'blockstrap/page-content-search-default',
array(
'title' => esc_html__( 'Search Content', 'blockstrap' ),
'categories' => array( 'page-content' ),
'content' => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
'blockstrap_pattern_page_content_search_default',
''
) : '
',
)
);
register_block_pattern(
'blockstrap/page-content-page-sidebar-left-default',
array(
'title' => esc_html__( 'Page Sidebar Left Content', 'blockstrap' ),
'categories' => array( 'page-content' ),
'content' => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
'blockstrap_pattern_page_content_page_sidebar_left_default',
''
) : '
',
)
);
register_block_pattern(
'blockstrap/page-content-page-sidebar-right-default',
array(
'title' => esc_html__( 'Page Sidebar Right Content', 'blockstrap' ),
'categories' => array( 'page-content' ),
'content' => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
'blockstrap_pattern_page_content_page_sidebar_right_default',
''
) : '
',
)
);
if ( defined( 'GEODIRECTORY_VERSION' ) && defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ) {
register_block_pattern(
'blockstrap/page-content-gd-archive-default',
array(
'title' => esc_html__( 'GD Archive Content', 'blockstrap' ),
'categories' => array( 'page-content' ),
'content' => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
'blockstrap_pattern_page_content_gd_archive_default',
''
) : '
' . __( 'Thia template requires the GeoDirectory plugin to be installed', 'blockstrap' ) . '
',
)
);
register_block_pattern(
'blockstrap/page-content-gd-search-default',
array(
'title' => esc_html__( 'GD Search Content', 'blockstrap' ),
'categories' => array( 'page-content' ),
'content' => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
'blockstrap_pattern_page_content_gd_search_default',
''
) : '
' . __( 'Thia template requires the GeoDirectory plugin to be installed', 'blockstrap' ) . '
',
)
);
register_block_pattern(
'blockstrap/page-content-gd-single-default',
array(
'title' => esc_html__( 'GD Single Content', 'blockstrap' ),
'categories' => array( 'page-content' ),
'content' => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
'blockstrap_pattern_page_content_gd_single_default',
''
) : '
' . __( 'Thia template requires the GeoDirectory plugin to be installed', 'blockstrap' ) . '
',
)
);
}
}