0
votes

I can use redux framework options for front-end eleemnts. Now lets say if i want to change the layout(colors, background colors) of redux option panel in wp-admin using redux options, then how can i achieve this. I want to give user the option to change the layout of the option panel.

I can do this by static way but i want it to be done using redux options. is it possible?

1

1 Answers

3
votes

Lead dev of Redux here. Sure, just do get_option('OPT_NAME') before you run your panel, and boom updates.

If you want to change dynamically on the fly, then there will need to be some extra work on your part. Redux can't do that for you. :)