MEOM Dodo plugin for cleaning up WordPress.
- PHP 7+.
- Composer for managing PHP dependencies.
Use Composer to install the package.
composer require meom/meom-dodo
Or if living on the edge:
composer require meom/meom-dodo:dev-main
Only youtube
embed is allowed by default. You can modify the allowed array with the filter meom_dodo_allowed_embed_variants
.
Note! This is already sitting in Kala Stack.
Example usage:
/**
* Determine which embeds are allowed.
* By default only youtube is allowed, defined in MEOM Dodo plugin.
*
* @param array $allowed_embeds List of allowed embeds.
* @return array $allowed_embeds Modified array of allowed embeds.
*/
function prefix_gutenberg_allowed_embeds( $allowed_embeds ) {
$allowed_embeds = [
'youtube',
'vimeo',
];
return $allowed_embeds;
}
add_filter( 'meom_dodo_allowed_embed_variants','prefix_gutenberg_allowed_embeds' );
Allow drop cap with the filter meom_dodo_remove_drop_cap
.
Example usage:
add_filter( 'meom_dodo_remove_drop_cap', '__return_false' );
Allow block directory with the filter meom_dodo_remove_block_directory
.
Example usage:
add_filter( 'meom_dodo_remove_block_directory', '__return_false' );
Allow layout support with the filter meom_dodo_remove_layout_support
.
Example usage:
add_filter( 'meom_dodo_remove_layout_support', '__return_false' );
Allow SVG filters with the filter meom_dodo_remove_svg_filters
.
Example usage:
add_filter( 'meom_dodo_remove_svg_filters', '__return_false' );
Remove adding utility classes with the filter meom_dodo_add_utility_classes
.
Example usage:
add_filter( 'meom_dodo_add_utility_classes', '__return_false' );
Hide contact content admin widget with the filter meom_dodo_show_contact_content
.
Example usage:
add_filter( 'meom_dodo_show_contact_content', '__return_false' );
By default some admin menu items are removed. You can modify the list of removed admin menu items with the filter meom_dodo_removed_admin_menu_items
.
/**
* Determine which admin menu items are removed.
*
* @param array $removed_admin_menu_items List of removed admin menu items.
* @return array $removed_admin_menu_items Modified array of removed admin menu items.
*/
function prefix_removed_admin_menu_items( $removed_admin_menu_items ) {
$removed_admin_menu_items = [
'plugins.php',
'edit.php?post_type=acf-field-group',
'themes.php',
'users.php',
];
return $removed_admin_menu_items;
}
add_filter( 'meom_dodo_removed_admin_menu_items', 'prefix_removed_admin_menu_items' );