Menu
  • HOME
  • TAGS

Wordpress - Adding to Redux Theme Options using Child Theme

php,wordpress,wordpress-filter

Lead dev of Redux Framework here. This solution only works if you're using Redux Framework 3.1+. If you have an older version, install the Redux Framework plugin and it will override the version inside your theme. First go to the current option panel. Open up a javascript console (use chrome...

How to remove the option to publish posts in the past with time stamp in wordpress?

wordpress,wordpress-plugin-dev,wordpress-filter

http://codex.wordpress.org/Plugin_API/Action_Reference/save_post is what you need. add_action('save_post', 'stop_publishing', 20); function stop_publishing($post_id) { $post = get_post($post_id); $post_date = $post->post_date; $current_date = date("Y-m-d"); //do your math of date calculation //user has set a date in the past, I am using an imaginary variable date_is_not_valid if ( $date_is_not_valid ) { $message = '<p>Please enter...