Is it possible to store soemthing like this in a php string:
$variable = "'orderby'=>'title','order'=>ASC'"
I want to use it in a wordpress loop, but am unsure if I can store multiple arguments in a single variable as a string. For example, I do not want the variable to store multiple arguments, but rather the entire quoted text as a string.
serialize()if you're going to store that data in database.