-
__('Suchfeld mit Optionen für Titel- und Gastautoren-Suche', 'textdomain'))
+ __('Suche Widget', 'wp-multi-search'),
+ array('description' => __('Suchfeld mit Optionen für Titel- und Gastautoren-Suche', 'wp-multi-search'))
);
}
public function widget($args, $instance) {
echo $args['before_widget'];
- echo '
+
@@ -183,15 +189,15 @@ add_action('admin_init', 'csp_register_settings');
// 7️⃣ **Callback für die Sektion**
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**
function csp_shiftnav_position_select_callback() {
$positions = array(
- 'top' => 'Top of ShiftNav',
- 'bottom' => 'Bottom of ShiftNav',
- 'none' => 'Do not display in ShiftNav'
+ 'top' => __('Top of ShiftNav', 'wp-multi-search'),
+ 'bottom' => __('Bottom of ShiftNav', 'wp-multi-search'),
+ 'none' => __('Do not display in ShiftNav', 'wp-multi-search')
);
$selected_position = get_option('csp_shiftnav_position', 'none');
@@ -204,7 +210,6 @@ function csp_shiftnav_position_select_callback() {
// 9️⃣ **Funktion zum Einfügen des Suchformulars in ShiftNav**
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') {
return $nav_menu;
}
@@ -259,6 +264,23 @@ function csp_custom_search_results($query) {
add_filter('posts_groupby', 'csp_custom_search_groupby', 10, 2);
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');
@@ -323,4 +345,4 @@ function csp_guest_author_search_where($where, $query) {
}
add_filter('posts_where', 'csp_guest_author_search_where', 10, 2);
-?>
+?>
\ No newline at end of file