I want to auto refresh my text widget every 30 seconds. Because my affiliate team asking me to auto refresh the text widget every 30seconds. Any write function for me to auto refresh the text widget every 30 seconds
Unless you want to reload the page every time (probably not), you need to use javascript for this. You're in the wrong forum. Javascript / jQuery -> is over there.
using plain html (place in <head>): <meta http-equiv="refresh" content="30"> using php: <?php $page = $_SERVER['PHP_SELF']; $sec ="30"; header("Refresh: $sec; url=$page"); ?>
Ignore chrisnagios's answer. It makes no sense to refresh the whole page if you want a specific section to update. Like Popsicle suggested you need to use Ajax. It most likely can be done rather easily. Look up Ajax.
I recently noticed auto reload widgets plugin on WordPress plugin directory. I think this plugin help you to auto reload any widgets including affiliates widgets. ref: https://wordpress.org/plugins/wp-auto-reload-widgets/