Created
March 8, 2019 09:52
-
-
Save bogdan-mainwp/a1e56b6ae16d43880168dab87a879a79 to your computer and use it in GitHub Desktop.
Custom code snippet to change code editor height and background color for the Code Snippets extension.
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 the following code snippet to the functions.php file of the MainWP Customisations plugin | |
// Download MainWP Customisations here: https://github.com/mainwp/mainwp-customisations | |
// More about the plugin: https://mainwp.com/mainwp-customisations/ | |
add_filter( 'mainwp_codesnippets_editor_attr', 'myhook_mainwp_codesnippets_editor_attr', 10); | |
function myhook_mainwp_codesnippets_editor_attr( $data ) { | |
$data['height'] = 500; | |
// supported themes: 'erlang-dark', 'night', 'xq-dark', 'xq-light', 'the-matrix', 'eclipse' | |
$data['theme'] = 'eclipse'; | |
return $data; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment