Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
894f70af8a | |||
2c8e4448ce | |||
f4af6056ba | |||
afdf7f0c21 | |||
c172cde6f9 |
@ -2,8 +2,8 @@
|
|||||||
/**
|
/**
|
||||||
* Plugin Name: WP-Multi Search
|
* Plugin Name: WP-Multi Search
|
||||||
* Plugin URI: https://git.viper.ipv64.net/M_Viper/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])
|
* Description: Fügt eine Suchfunktion als Shortcode, Widget und Menüeintrag hinzu.(Shortcode: [custom_search])
|
||||||
* Version: 1.2
|
* Version: 1.4
|
||||||
* Author: M_Viper
|
* Author: M_Viper
|
||||||
* Author URI: https://m-viper.de
|
* Author URI: https://m-viper.de
|
||||||
* Requires at least: 6.7.2
|
* Requires at least: 6.7.2
|
||||||
@ -18,6 +18,12 @@
|
|||||||
exit; // Sicherheitsmaßnahme
|
exit; // Sicherheitsmaßnahme
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Textdomain laden
|
||||||
|
function csp_load_textdomain() {
|
||||||
|
load_plugin_textdomain('wp-multi-search', false, dirname(plugin_basename(__FILE__)) . '/languages');
|
||||||
|
}
|
||||||
|
add_action('plugins_loaded', 'csp_load_textdomain');
|
||||||
|
|
||||||
// 1️⃣ **Suchformular-Funktion mit integriertem CSS**
|
// 1️⃣ **Suchformular-Funktion mit integriertem CSS**
|
||||||
function csp_search_form() {
|
function csp_search_form() {
|
||||||
ob_start();
|
ob_start();
|
||||||
@ -28,7 +34,7 @@ function csp_search_form() {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
max-width: auto;
|
max-width: 500px;
|
||||||
margin: 10px auto;
|
margin: 10px auto;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
background: #f8f9fa;
|
background: #f8f9fa;
|
||||||
@ -85,20 +91,20 @@ function csp_search_form() {
|
|||||||
<div class="csp-search-type">
|
<div class="csp-search-type">
|
||||||
<label>
|
<label>
|
||||||
<input type="radio" name="search_type" value="all" <?php checked($search_type, 'all'); ?>>
|
<input type="radio" name="search_type" value="all" <?php checked($search_type, 'all'); ?>>
|
||||||
<?php _e('Alle Inhalte', 'textdomain'); ?>
|
<?php _e('Alle Inhalte', 'wp-multi-search'); ?>
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
<input type="radio" name="search_type" value="title" <?php checked($search_type, 'title'); ?>>
|
<input type="radio" name="search_type" value="title" <?php checked($search_type, 'title'); ?>>
|
||||||
<?php _e('Nur Titel', 'textdomain'); ?>
|
<?php _e('Titel', 'wp-multi-search'); ?>
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
<input type="radio" name="search_type" value="guest_author" <?php checked($search_type, 'guest_author'); ?>>
|
<input type="radio" name="search_type" value="guest_author" <?php checked($search_type, 'guest_author'); ?>>
|
||||||
<?php _e('Nur Gastautoren', 'textdomain'); ?>
|
<?php _e('Autoren', 'wp-multi-search'); ?>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="csp-search-fields">
|
<div class="csp-search-fields">
|
||||||
<input type="text" name="s" placeholder="🔍 Suchbegriff eingeben" value="<?php echo esc_attr(get_search_query()); ?>">
|
<input type="text" name="s" placeholder="🔍 Suchbegriff eingeben" value="<?php echo esc_attr(get_search_query()); ?>">
|
||||||
<input type="submit" value="Suchen">
|
<input type="submit" value="<?php _e('Suchen', 'wp-multi-search'); ?>">
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<?php
|
<?php
|
||||||
@ -113,14 +119,14 @@ class CSP_Search_Widget extends WP_Widget {
|
|||||||
public function __construct() {
|
public function __construct() {
|
||||||
parent::__construct(
|
parent::__construct(
|
||||||
'csp_search_widget',
|
'csp_search_widget',
|
||||||
__('Suche Widget', 'textdomain'),
|
__('Suche Widget', 'wp-multi-search'),
|
||||||
array('description' => __('Suchfeld mit Optionen für Titel- und Gastautoren-Suche', 'textdomain'))
|
array('description' => __('Suchfeld mit Optionen für Titel- und Gastautoren-Suche', 'wp-multi-search'))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function widget($args, $instance) {
|
public function widget($args, $instance) {
|
||||||
echo $args['before_widget'];
|
echo $args['before_widget'];
|
||||||
echo '<h3 class="widget-title">' . __('Suche', 'textdomain') . '</h3>';
|
echo '<h3 class="widget-title">' . __('Suche', 'wp-multi-search') . '</h3>';
|
||||||
echo csp_search_form();
|
echo csp_search_form();
|
||||||
echo $args['after_widget'];
|
echo $args['after_widget'];
|
||||||
}
|
}
|
||||||
@ -147,11 +153,12 @@ add_action('admin_menu', 'csp_add_menu_page');
|
|||||||
function csp_render_settings_page() {
|
function csp_render_settings_page() {
|
||||||
?>
|
?>
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<h1>WP-Multi Search Settings</h1>
|
<h1><?php _e('WP-Multi Search Settings', 'wp-multi-search'); ?></h1>
|
||||||
<form method="post" action="options.php">
|
<form method="post" action="options.php">
|
||||||
<?php
|
<?php
|
||||||
settings_fields('csp_settings_group');
|
settings_fields('csp_settings_group');
|
||||||
do_settings_sections('custom-search-settings');
|
do_settings_sections('custom-search-settings');
|
||||||
|
wp_nonce_field('csp_settings_save', 'csp_settings_nonce');
|
||||||
submit_button();
|
submit_button();
|
||||||
?>
|
?>
|
||||||
</form>
|
</form>
|
||||||
@ -182,15 +189,15 @@ add_action('admin_init', 'csp_register_settings');
|
|||||||
|
|
||||||
// 7️⃣ **Callback für die Sektion**
|
// 7️⃣ **Callback für die Sektion**
|
||||||
function csp_section_callback() {
|
function csp_section_callback() {
|
||||||
echo 'Choose where to display the search form in ShiftNav:';
|
echo __('Choose where to display the search form in ShiftNav:', 'wp-multi-search');
|
||||||
}
|
}
|
||||||
|
|
||||||
// 8️⃣ **Callback für das Auswahlfeld**
|
// 8️⃣ **Callback für das Auswahlfeld**
|
||||||
function csp_shiftnav_position_select_callback() {
|
function csp_shiftnav_position_select_callback() {
|
||||||
$positions = array(
|
$positions = array(
|
||||||
'top' => 'Top of ShiftNav',
|
'top' => __('Top of ShiftNav', 'wp-multi-search'),
|
||||||
'bottom' => 'Bottom of ShiftNav',
|
'bottom' => __('Bottom of ShiftNav', 'wp-multi-search'),
|
||||||
'none' => 'Do not display in ShiftNav'
|
'none' => __('Do not display in ShiftNav', 'wp-multi-search')
|
||||||
);
|
);
|
||||||
$selected_position = get_option('csp_shiftnav_position', 'none');
|
$selected_position = get_option('csp_shiftnav_position', 'none');
|
||||||
|
|
||||||
@ -203,7 +210,6 @@ function csp_shiftnav_position_select_callback() {
|
|||||||
|
|
||||||
// 9️⃣ **Funktion zum Einfügen des Suchformulars in ShiftNav**
|
// 9️⃣ **Funktion zum Einfügen des Suchformulars in ShiftNav**
|
||||||
function csp_insert_search_form_in_shiftnav($nav_menu, $args) {
|
function csp_insert_search_form_in_shiftnav($nav_menu, $args) {
|
||||||
// Überprüfen, ob es sich um das ShiftNav-Menü handelt
|
|
||||||
if ($args->theme_location !== 'shiftnav') {
|
if ($args->theme_location !== 'shiftnav') {
|
||||||
return $nav_menu;
|
return $nav_menu;
|
||||||
}
|
}
|
||||||
@ -258,6 +264,23 @@ function csp_custom_search_results($query) {
|
|||||||
add_filter('posts_groupby', 'csp_custom_search_groupby', 10, 2);
|
add_filter('posts_groupby', 'csp_custom_search_groupby', 10, 2);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Filter nach der Abfrage entfernen
|
||||||
|
add_action('wp', function() use ($search_type) {
|
||||||
|
switch($search_type) {
|
||||||
|
case 'title':
|
||||||
|
remove_filter('posts_where', 'csp_title_search_where', 10);
|
||||||
|
break;
|
||||||
|
case 'guest_author':
|
||||||
|
// Keine zusätzlichen Filter zum Entfernen
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
remove_filter('posts_search', 'csp_custom_search_where', 10);
|
||||||
|
remove_filter('posts_join', 'csp_custom_search_join', 10);
|
||||||
|
remove_filter('posts_groupby', 'csp_custom_search_groupby', 10);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
add_action('pre_get_posts', 'csp_custom_search_results');
|
add_action('pre_get_posts', 'csp_custom_search_results');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user