Skip to main content

Questions tagged [array]

An array (in PHP) is actually an ordered map. A map is a type that associates values to keys. This type is optimized for several different uses; it can be treated as an array, list (vector), hash table (an implementation of a map), dictionary, collection, stack, queue, and probably more. As array values can be other arrays, trees and multidimensional arrays are also possible.

Filter by
Sorted by
Tagged with
1 vote
0 answers
43 views

I am working with Wordpress to build a weather website and I have a little bit of a complicated piece I'm trying to do. I have a static JSON array of record high temperatures for each date in a year. ...
Kevin Hemphill's user avatar
0 votes
0 answers
51 views

This is similar to a question that hexalix helped me with recently. Trying to update a table from a multiple field form I tried using similar code from that question but to no avail. Form field as ...
Ian Young's user avatar
1 vote
0 answers
56 views

Odd one this. I have been working on this particular query for a few days now. The idea is to use the variables selected from first query to be used in second. ($project_id = $_GET['project_id'])|| ($...
Ian Young's user avatar
0 votes
1 answer
40 views

When we check view source page of our site, it is displaying below code in all pages : Array ( ) below is screenshot : Requirement : How to remove that Array() text ? From which file it is coming ...
Baby in Wp's user avatar
0 votes
1 answer
71 views

I want to order a WP_User_Query by a meta value. The meta key is a multi-select field, and the value is saved as an array. When I do a print_r of get_user_meta($user_id,'committee',true) this is what ...
LBF's user avatar
  • 539
0 votes
1 answer
63 views

There are JSON functions: https://dev.mysql.com/doc/refman/8.3/en/json-search-functions.html can be used to search in complex data with MySQL. In the case of meta keys and values it is an issue that ...
inf3rno's user avatar
  • 135
1 vote
1 answer
108 views

I created a pagination with the_posts_pagination() function Right now it looks like this and it works fine: Previous 1 2 3 4 Next When I am on the 1st page, the "prev" button disappears or &...
user avatar
0 votes
1 answer
353 views

I have a custom post type for business locations that I am trying to add an additional sorting filter to by using a custom meta value. The custom field specifies whether or not the location is open or ...
user13286's user avatar
  • 237
0 votes
1 answer
32 views

I made a list of checkboxes that upon click would be sent to database. Every time I submit data the value is 0. If I try and convert the value of the array to string, I get string to array error. <...
Jdubstep2345's user avatar
1 vote
1 answer
157 views

We have a custom post type slugged 'download' and it acts like a posts but with the different slug. (It displays content like a post). Now, We have a custom field named "videos" and ...
user14772091's user avatar
0 votes
1 answer
1k views

I got the following array: [0] => Array ( [kanel] => 5 [peber] => 0 [shipping] => A ) [1] => Array ( [kanel] => 25 [peber] => ...
Jannickla's user avatar
0 votes
1 answer
43 views

I have a CPT with daily deals, I need to show these daily deals on my frontend as per today's day. For eg, if it is Thursday : The returning array should return Thursday, Friday, Saturday, Sunday, ...
Advait Nandeshwar's user avatar
0 votes
0 answers
178 views

How do I save an array of objects in Wordpress/PHP via update_option ? What I'm trying to save is something like: update_option('my_option', [ { 'c': htmlspecialchars($_POST['hidden_category']), ...
Nathan Bernard's user avatar
0 votes
1 answer
636 views

I am working on a button which will download the images as a zip on specific posts. It works if I leave the files array in functions.php with a few hard-coded img links. But when I move the array to ...
Ben Blue's user avatar
  • 117
0 votes
1 answer
27 views

function test_sort_terms_hierarchicaly( Array &$cats, Array &$into, $parentId = 0 ) { if ( is_array( $cats ) ) { foreach ( $cats as $i => $cat ) { ...
brittle_spirit's user avatar
0 votes
1 answer
901 views

I've searched far and wide for a solution to the problem. I'm almost there, but can't seem to get it working completely. Background There are 3 post types that are involved in this function: League, ...
chris's user avatar
  • 3
0 votes
1 answer
44 views

I'm developing a medical directory website in Wordpress, and in the Grid/List pages for the site, each of the listing cards contains a list of specialties (using the category taxonomy within the ...
Versace's user avatar
0 votes
1 answer
44 views

I am trying to change default values inside array in custom field. But I am getting error "PHP Fatal error: Uncaught Error: Cannot use string offset as an array" when I try to change the ...
user7459842's user avatar
0 votes
1 answer
643 views

Hello I have multiauthor website and I need to create a condition to check if defined user ( no current user ) has comment on current post. Here is my code but I can not complete this $userid = "...
Teymur Abbasov's user avatar
0 votes
0 answers
237 views

I have this kind of data on my database: <wp:postmeta> <wp:meta_key> <![CDATA[property_icalendar_import_multi]]> </wp:meta_key> <wp:meta_value> &...
Peanuts's user avatar
  • 125
1 vote
0 answers
95 views

I'm trying to populate the Child Page dropdown with that of the selected Parent Page - If a specific Parent page is chosen it should fill the second dropdown with all Child pages listed under that ...
ZUH.'s user avatar
  • 11
0 votes
1 answer
161 views

How can i update/remove/empty a sub-array on user post submission in admin area? here ist the reference on how to update nested array i am using but it is not working if ( $post->post_type == '...
Gildas.Tambo's user avatar
0 votes
1 answer
221 views

I'm trying to exclude upsells using post__not_in but I already have a value and do not know how to combine the two. I tried this: 'post__not_in' => get_upsell_ids(), [get_the_ID()] But it is not ...
Ioannis Koukotzilas's user avatar
0 votes
0 answers
254 views

I need some help with saving my meta data from a post. On the editpage I have the following input fields <input type="text" name="data[color][]" value="red"/> <...
Liekeee's user avatar
0 votes
1 answer
279 views

When I running Query Monitor on one of my page, I get a notice "Array to string conversion" for the following line: $terms = get_the_terms( $post->ID , array( 'product-categories') )...
alancc's user avatar
  • 41

1
2 3 4 5
16