// Add a custom query variable add_filter( 'rest_query_vars', function ( $valid_vars ) { $valid_vars[] = 'custom_after'; return $valid_vars; } ); // Modify the query if the custom query variable is set add_action( 'pre_get_posts', function ( $query ) { if ( isset( $query->query_vars['custom_after'] ) ) { $date_string = $query->query_vars['custom_after']; $date = date( 'Y-m-d H:i:s', strtotime( $date_string ) ); $query->set( 'date_query', array( 'after' => $date, 'inclusive' => true, ) ); } }, 10, 1 ); // Ensure our custom query variable is exposed to the API add_filter( 'rest_post_query', function ( $args, $request ) { if ( ! empty( $request['custom_after'] ) ) { $args['custom_after'] = $request['custom_after']; } return $args; }, 10, 2 );
BVB NewsTransfers

Borussia Dortmund will Ziyech!

Wie das italienische Portal „tuttomercatoweb“ berichtet, soll Borussia Dortmund ein neues Angebot für Ziyech vorbereiten. Ziyech wird allerdings wohl über 40 Millionen Euro kosten. Ein Angebot im Winter wurde von Ajax Amsterdam abgelehnt. 



Halb Europa will Ziyech

Neben Borussia Dortmund und den FC Bayern München, sollen ebenfalls Chelsea, Everton und Leicester City interessiert sein.

Ziyech wird am heutigen Mittwochabend gegen Juventus zeigen wollen, wieso er so begehrt ist.

Abonnieren
Benachrichtige mich bei
guest
0 Comments
Inline Feedbacks
View all comments