Tagged Questions
2
votes
1answer
701 views
What is the best way to export and import theme options?
So what is the best way to create an export and import feature, I tried serialize() and urlencode() on an array of options to be used in a url like so:
export.php?data=(long string), and use $_GET ...
1
vote
1answer
368 views
WordPress custom options storing?
I have a theme with around 500 custom options, their code looks like this:
<form method="post" action="options.php">
<?php wp_nonce_field('update-options'); ?>
<input type="text" ...
1
vote
1answer
370 views
How to add an export function to a custom Option Theme Page
I'm creating a new Wordpress template and I have a question:
I've added a custom Option Page to my new template (you can see what I'm doing Here and Here) but now I would like to add a new function.
...