add_action(“breakdance_register_template_types_and_conditions”, function () { if (function_exists(“trp_get_languages”)) { $lang_list_full = trp_get_languages(); $lang_list = array(); foreach($lang_list_full as $key => $value) { $lang_list[] = $key; } \Breakdance\ConditionsAPI\register([ “supports” => [“element_display”, “templating”], “slug” => “TranslatePress4bd-condition”, // MUST BE UNIQUE “label” => “Language”, “category” =>…Continue reading
// 1️⃣ Admin Menüpunkt für die globale Einstellungsseite hinzufügen function my_custom_global_settings() { add_menu_page( ‘Globale Einstellungen’, // Seitentitel ‘Globale Daten’, // Menüpunkt-Name ‘manage_options’, // Berechtigung ‘global-settings’, // Slug ‘my_global_settings_page’, // Callback-Funktion ‘dashicons-admin-generic’, // Icon 80 // Position im Menü ); }…Continue reading
function disable_editor_for_selected_post_types() { $disabled_post_types = array(‘post’, ‘page’); // Liste der zu deaktivierenden Post-Typen foreach ($disabled_post_types as $post_type) { remove_post_type_support($post_type, ‘editor’); } } add_action(‘init’, ‘disable_editor_for_selected_post_types’);Continue reading
// Entfernt Google Fonts von WordPress und Breakdance function remove_google_fonts() { global $wp_styles; // Durch alle registrierten Styles iterieren und Google Fonts entfernen foreach ($wp_styles->registered as $handle => $style) { if (strpos($style->src, ‘fonts.googleapis.com’) !== false) { wp_dequeue_style($handle); wp_deregister_style($handle); } }…Continue reading
add_filter(“breakdance_register_font”, function ($font) { $isGoogleFont = !!$font[‘dependencies’][‘googleFonts’]; if ($isGoogleFont) { return false; } return $font; });Continue reading
add_filter(‘wwlc_allowed_user_roles’, function($allowed_roles) { $allowed_roles[] = ‘editor’; // Add your custom role here return $allowed_roles; });Continue reading
add_action(‘admin_init’, ‘restrict_product_creation’); function restrict_product_creation() { $product_count = wp_count_posts(‘product’)->publish; if ($product_count >= 10) { add_action(‘admin_footer’, function() { echo ‘ ‘; }); add_filter(‘wp_insert_post_data’, function($data, $postarr) { if ($data[‘post_type’] === ‘product’ && $data[‘post_status’] !== ‘trash’) { wp_die(‘You have reached the maximum limit of…Continue reading
add_filter( ‘the_content’, function ( $content ) { // Return early if it isn’t the home page or the blog page. if ( ! is_home() && ! is_front_page() ) { return $content; } return str_replace( ‘Continue reading