Last active
February 6, 2020 13:55
-
-
Save IronGhost63/11120908426d63b7495da403c3fd0cf1 to your computer and use it in GitHub Desktop.
Gutenberg image block - default link destination
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(wp) { | |
wp.hooks.addFilter( | |
"blocks.registerBlockType", | |
"my-plugin/modify-linkDestination-default", | |
function (settings, name) { | |
if (name === "core/image") { | |
settings.attributes.linkDestination.default = "media"; | |
} else if ( name === "core/gallery" ) { | |
settings.attributes.linkTo.default = "media"; | |
} | |
return settings; | |
} | |
); | |
})(window.wp) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'enqueue_block_editor_assets', function() { | |
wp_enqueue_script( 'block-image', 'path/to/block-image.js' ); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry, only works with gallery block