php - Get all options from WordPress options table -


is there way of options being store in options table wordpress plugin?

foreach ($options $slug => $values) {     var_dump($slug); } 

i have returns 1 single option , need of them iterate on $slug variable

please find code below :

$options = wp_load_alloptions(); foreach ($options $slug => $values) {     var_dump($slug); } 

hope works you.


Comments

Popular posts from this blog

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -