/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/blocks/donor-wall/data
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/blocks/donor-wall/data/options.js (703B)
/**
* WordPress dependencies
*/
const { __ } = wp.i18n;
/**
* Options data for various form selects
*/
const giveDonorWallOptions = {};
// Form Display Styles
giveDonorWallOptions.columns = [
{ value: 'best-fit', label: __( 'Best Fit' ) },
{ value: '1', label: '1' },
{ value: '2', label: '2' },
{ value: '3', label: '3' },
{ value: '4', label: '4' },
];
// Order
giveDonorWallOptions.order = [
{ value: 'DESC', label: __( 'Descending' ) },
{ value: 'ASC', label: __( 'Ascending' ) },
];
// Order
giveDonorWallOptions.orderBy = [
{ value: 'donation_amount', label: __( 'Donation Amount' ) },
{ value: 'post_date', label: __( 'Date Created' ) },
];
export default giveDonorWallOptions;