• Resolved WP-Henne

    (@wp-henne)


    Hello,

    i’d like to suggest a new field to set a different format for time and date at the backend while in post/page list view.

    Because the default setting from the wordpress is for the frontend and isn’t all fine at the admin view for us.

    I’d like to use something like this:

    $modified = date_i18n( apply_filters( 'wplmi_admin_column_date_time_format', 'd.m.Y \<\b\r\> G:i \U\h\r' ), $m_stamp );
    echo '<br>' . get_the_modified_author();

    Thank you

Viewing 1 replies (of 1 total)
  • Plugin Author Sayan Datta

    (@infosatech)

    Hello @wp-henne

    Please update the plugin to latest version and then use this code:

    function wplmi_change_column_date_format() {
        // date format
        return 'd.m.Y \<\b\r\> G:i \U\h\r';
    }
    add_filter( 'wplmi/admin_column_datetime_format', 'wplmi_change_column_date_format' );

    Thanks!

Viewing 1 replies (of 1 total)

The topic ‘feature request: user format at admin backend (column.php)’ is closed to new replies.