feat: Twenty Sixteen 主题,带定制 Header 布局 + mu-plugins

This commit is contained in:
Mac
2026-05-05 03:16:05 +08:00
commit 77b3a5dc96
112 changed files with 14573 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
/**
* Twenty Sixteen keyboard support for image navigation.
*/
( function( $ ) {
$( document ).on( 'keydown.twentysixteen', function( e ) {
var url = false;
// Left arrow key code.
if ( 37 === e.which ) {
url = $( '.nav-previous a' ).attr( 'href' );
// Right arrow key code.
} else if ( 39 === e.which ) {
url = $( '.nav-next a' ).attr( 'href' );
// Other key code.
} else {
return;
}
if ( url && ! $( 'textarea, input' ).is( ':focus' ) ) {
window.location = url;
}
} );
} )( jQuery );