Can I upload wordpress plugin made with framework

Welcome to wordpress.stackexchange.com. I don’t think plugins with frameworks are allowed, sorry. https://wptavern.com/the-wordpress-plugin-directory-will-no-longer-accept-frameworks https://make.wordpress.org/plugins/2016/03/01/please-do-not-submit-frameworks/ Here are Detailed Plugin Guidelines https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/ And here about Writing a Plugin https://codex.wordpress.org/Writing_a_Plugin If this answer helped you or solved your issue please vote and/or mark it accepted, thank you.

Show multiple option in URL with Redux framework in front end

try to use this: function tes_sidebar() { global $redux_demo; $sidebar =& $redux_demo[‘sidebar_position’] ) ? $redux_demo[‘sidebar_position’] : ‘right’; switch ( $sidebar ) { case ‘left’: get_template_part( ‘sidebar’,’left’ ); break; case ‘disable’: get_template_part( ” ); break; default: get_template_part( ‘sidebar’,’right’ ); break; } } call with this function: tes_sidebar();

Does WP, php, or a current framework (woofoo / genesis, etc). Offer a way to schedule text / bg color changes?

You could just create different style sheets for each color profile, and load those depending on which month it is. Here’s a basic example showing how you could load a halloween.css file for october, and an xmas.css file for december. The code below would go in your themes functions.php file: add_action(‘wp_enqueue_scripts’, ‘seasonalCSS’); function seasonalCSS() { … Read more