add_filter( 'pre_comment_user_ip', 'replace_comment_ip' ); /** * https://customlayouts.com/ */ function layout_query_args( $query_args ) { // Modify the query args $query_args[ 'meta_key' ] = 'sort_title'; $query_args[ 'orderby' ] = 'meta_value_num'; $query_args[ 'order' ] = 'DESC'; // Always return in WP filters return $query_args; } add_filter( 'custom-layouts/layout/query_args', 'layout_query_args', 10 ); /** * Display Posts - Include Sort_Title * */ function be_dps_include_sort_title( $output, $original_atts, $image, $title, $date, $excerpt, $inner_wrapper, $content, $class, $author, $category_display_text ) { if( empty( $original_atts['include_sort_title'] ) || false === filter_var( $original_atts['include_sort_title'], FILTER_VALIDATE_BOOLEAN ) ) return $output; $key = 'sort_title'; $sort_title = get_post_meta( get_the_ID(), $key, true ); if( empty( $sort_title ) ) return $output; $sort_link = get_permalink( get_the_ID(), false ); if( empty( $sort_link ) ) return $output; // Add span around it for styling $sort_title = '' . $sort_title . ''; // Insert it into the output wherever you'd like it $output = '<' . $inner_wrapper . ' class="' . implode( ' ', $class ) . '">' . $image . $title . $sort_title . $date . $author . $category_display_text . $excerpt . $content . '' . $inner_wrapper . '>'; return $output; } add_filter( 'display_posts_shortcode_output', 'be_dps_include_sort_title', 10, 11 ); /** * Kommentare * Eingabefeld Webseite entfernen */ function abwebdesign_disable_comment_url($fields) { unset($fields['url']); return $fields; } add_filter('comment_form_default_fields','abwebdesign_disable_comment_url'); /** * Kommentare * Infotext hinzufügen */ function abwebdesign_comment_text_before($arg) { $arg['comment_notes_before'] = "
Wir bieten bei diesem Artikel die Möglichkeit für Leserkommentare. Bitte bleiben Sie respektvoll und konstruktiv, um einen anregenden Austausch zu fördern. Alle Kommentare werden erst nach Prüfung durch die Redaktion veröffentlicht. Die Redaktion behält sich das Recht vor, Kommentare zu kürzen oder von der Veröffentlichung auszuschließen. Es besteht kein Anspruch auf Veröffentlichung.
Name und E-Mail sind optional. IP-Adressen werden nicht gespeichert und E-Mail Adressen nicht veröffentlicht.
"; return $arg; } add_filter('comment_form_defaults', 'abwebdesign_comment_text_before');