WordpressBundle并记住我

For our application we're using Symfony2 in combination with the WordpressBundle. I'm trying to enable the Symfony2 remember_me functionality, but whatever I try, it results in the following error:

RuntimeException: You must configure at least one remember-me aware listener (such as form-login) for each firewall that has remember-me enabled.

The firewalls in the security.yml look as follows, but I still get the above error. I've posted sort-of an issue which also contains related issues.

firewalls:
    dev:
        pattern:  ^/(_(profiler|wdt)|css|images|js)/
        security: false

    main:
        pattern:    ^/
        anonymous:  ~
        remember_me:
            key: "%secret%"
            lifetime: 604800
            always_remember_me: true 
        form_login:
            login_path:       /login
            check_path:       /login_check
            remember_me:      true
        logout:
            path:   /logout
            target: /
        wordpress_cookie: false
        wordpress_form_login:
            remember_me:      true
            remember_me_parameter: _remember_me