<input type="hidden" name="redirect_to" value="адрес страницы для редиректа" />
add_action('login_form', 'redirect_after_login');
function redirect_after_login() {
if (!isset($_POST['redirect_to'])) {
wp_redirect( $_POST['redirect_to'] );
exit();
}
}
function wpse147453_remove_child_categories_from_permalinks( $category ) {
while ( $category->parent ) {
$category = get_term( $category->parent, 'category' );
}
return $category;
}
add_filter( 'post_link_category', 'wpse147453_remove_child_categories_from_permalinks' );
function reset_post_date_wpse_121565($data,$postarr) {
// var_dump($data,$postarr); die; // debug
$data['post_date'] = $data['post_modified'];
$data['post_date_gmt'] = $data['post_modified_gmt'];
return $data;
}
add_filter('wp_insert_post_data','reset_post_date_wpse_121565',99,2);
$comments = get_comments(array('author__in' => get_current_user_id(), 'number'=> 5 )); //получаем 5 последних комментариев текущего пользователя
foreach($comments as $comment) :
echo get_the_title( $comment->comment_post_ID ). "<br>"; //выводим название постов в которых оставлен комментарий
endforeach;