The WordPress Plugin Post Types Order
by NSP CODE is helpful in as it allows you to
Order Posts and Post Types Objects using a Drag and Drop Sortable javascript capability
But unfortunately the plugin does not work with wordpress HTTPS / SSL admin – or at least not without errors:
But the good news is that there is an easy fix with changing just a few lines of code:
At the top of the post-types-order.php
page there are two constant
definitions:
define('CPTPATH', ABSPATH.'wp-content/plugins/post-types-order');
define('CPTURL', get_option('siteurl').'/wp-content/plugins/post-types-order');
And the second one needs to use the plugins_url()
function that WordPress recommends instead:
define('CPTPATH', ABSPATH.'wp-content/plugins/post-types-order');
define('CPTURL', plugins_url().'/post-types-order');
After that you should stop receiving the HTTPS error for some insecure content when you are in the WP administration interface.