wp-multi-search.php aktualisiert

This commit is contained in:
M_Viper 2025-03-18 19:16:38 +00:00
parent afdf7f0c21
commit f4af6056ba

View File

@ -2,8 +2,8 @@
/**
* Plugin Name: WP-Multi Search
* Plugin URI: https://git.viper.ipv64.net/M_Viper/WP-Multi-Search
* Description: Fügt eine Suchfunktion als Shortcode, Widget und Menüeintrag hinzu.(Shortcode: [display_search_form])
* Version: 1.2
* Description: Fügt eine Suchfunktion als Shortcode, Widget und Menüeintrag hinzu.(Shortcode: [custom_search])
* Version: 1.3
* Author: M_Viper
* Author URI: https://m-viper.de
* Requires at least: 6.7.2
@ -89,17 +89,18 @@ function csp_search_form() {
</label>
<label>
<input type="radio" name="search_type" value="title" <?php checked($search_type, 'title'); ?>>
<?php _e('Nur Titel', 'textdomain'); ?>
<?php _e('Titel', 'textdomain'); ?>
</label>
<label>
<input type="radio" name="search_type" value="guest_author" <?php checked($search_type, 'guest_author'); ?>>
<?php _e('Nur Gastautoren', 'textdomain'); ?>
<?php _e('Autoren', 'textdomain'); ?>
</label>
</div>
<div class="csp-search-fields">
<input type="text" name="s" placeholder="🔍 Suchbegriff eingeben" value="<?php echo esc_attr(get_search_query()); ?>">
<input type="submit" value="Suchen">
</div>
<input type="submit" value="Suchen">
</form>
<?php
return ob_get_clean();