meom/meom-dodo

MEOM clean up WP.

Installs: 8 564

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 3

Forks: 0

Open Issues: 3

Type:wordpress-muplugin

1.4 2023-02-21 08:19 UTC

This package is auto-updated.

Last update: 2024-05-21 11:09:43 UTC


README

MEOM Dodo plugin for cleaning up WordPress.

MEOM dodo logo.

Requirements

  • PHP 7+.
  • Composer for managing PHP dependencies.

Installation

Use Composer to install the package.

composer require meom/meom-dodo

Or if living on the edge:

composer require meom/meom-dodo:dev-main

Filters

meom_dodo_allowed_embed_variants

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' );

meom_dodo_remove_drop_cap

Allow drop cap with the filter meom_dodo_remove_drop_cap.

Example usage:

add_filter( 'meom_dodo_remove_drop_cap', '__return_false' );

meom_dodo_remove_block_directory

Allow block directory with the filter meom_dodo_remove_block_directory.

Example usage:

add_filter( 'meom_dodo_remove_block_directory', '__return_false' );

meom_dodo_remove_layout_support

Allow layout support with the filter meom_dodo_remove_layout_support.

Example usage:

add_filter( 'meom_dodo_remove_layout_support', '__return_false' );

meom_dodo_remove_svg_filters

Allow SVG filters with the filter meom_dodo_remove_svg_filters.

Example usage:

add_filter( 'meom_dodo_remove_svg_filters', '__return_false' );

meom_dodo_add_utility_classes

Remove adding utility classes with the filter meom_dodo_add_utility_classes.

Example usage:

add_filter( 'meom_dodo_add_utility_classes', '__return_false' );

meom_dodo_show_contact_content

Hide contact content admin widget with the filter meom_dodo_show_contact_content.

Example usage:

add_filter( 'meom_dodo_show_contact_content', '__return_false' );

meom_dodo_removed_admin_menu_items

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' );