mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
Updates TT4 with additional changes ready for beta 3. Props jessplease, pbwebd, poena, afercia, luminuu, beafialho, onemaggie, mhkuu, richtabor, benoitchantre. Close #59575. Built from https://develop.svn.wordpress.org/trunk@56813 git-svn-id: http://core.svn.wordpress.org/trunk@56325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
15 lines
968 B
PHP
15 lines
968 B
PHP
<?php
|
|
/**
|
|
* Title: Post navigation
|
|
* slug: twentytwentyfour/post-navigation
|
|
* inserter: no
|
|
*/
|
|
?>
|
|
|
|
<!-- wp:group {"tagName":"nav","ariaLabel":"<?php esc_attr_e( 'Posts', 'twentytwentyfour' ); ?>","style":{"spacing":{"padding":{"bottom":"0vh"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
|
|
<nav class="wp-block-group" style="padding-bottom:0vh" aria-label="<?php esc_attr_e( 'Posts', 'twentytwentyfour' ); ?>">
|
|
<!-- wp:post-navigation-link {"type":"previous","label":"<?php echo esc_html_x( 'Previous: ', 'Label before the title of the previous post. There is a space after the colon.', 'twentytwentyfour' ); ?>","showTitle":true,"linkLabel":true,"arrow":"arrow"} /-->
|
|
<!-- wp:post-navigation-link {"label":"<?php echo esc_html_x( 'Next: ', 'Label before the title of the next post. There is a space after the colon.', 'twentytwentyfour' ); ?>","showTitle":true,"linkLabel":true,"arrow":"arrow"} /-->
|
|
</nav>
|
|
<!-- /wp:group -->
|