Skip to content
This repository was archived by the owner on May 18, 2025. It is now read-only.
This repository was archived by the owner on May 18, 2025. It is now read-only.

Shortcode cannot orderby name #65

@angelo-moreira

Description

@angelo-moreira

Hi

At the moment the plugin does not allow to order by name
I suggest changing class-woothemes-our-team.php at line 586

        // Whitelist checks.
        if ( ! in_array( $query_args['orderby'], array( 'none', 'ID', 'author', 'title', 'date', 'modified', 'parent', 'rand', 'comment_count', 'menu_order', 'meta_value', 'meta_value_num' ) ) ) {
            $query_args['orderby'] = 'date';
        }

Looks like just adding name to it works

        // Whitelist checks.
        if ( ! in_array( $query_args['orderby'], array( 'none', 'ID', 'author', 'title', 'name', 'date', 'modified', 'parent', 'rand', 'comment_count', 'menu_order', 'meta_value', 'meta_value_num' ) ) ) {
            $query_args['orderby'] = 'date';
        }

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions