You've already forked wp-bootstrap
21 lines
885 B
PHP
21 lines
885 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Title: Post navigation
|
||
|
|
* Slug: wp-bootstrap/post-navigation
|
||
|
|
* Categories: posts
|
||
|
|
* Description: Previous and next post links.
|
||
|
|
*
|
||
|
|
* @package WPBootstrap
|
||
|
|
* @since 0.0.1
|
||
|
|
*/
|
||
|
|
?>
|
||
|
|
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
|
||
|
|
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)">
|
||
|
|
<!-- wp:separator {"className":"is-style-wide"} -->
|
||
|
|
<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide"/>
|
||
|
|
<!-- /wp:separator -->
|
||
|
|
<!-- wp:post-navigation-link {"type":"previous","label":"<?php esc_attr_e( 'Previous', 'wp-bootstrap' ); ?>","arrow":"arrow"} /-->
|
||
|
|
<!-- wp:post-navigation-link {"label":"<?php esc_attr_e( 'Next', 'wp-bootstrap' ); ?>","arrow":"arrow"} /-->
|
||
|
|
</div>
|
||
|
|
<!-- /wp:group -->
|