Add items to the dark menu in WordPress
You would need to create a custom post type by adding this code to your functions.php file (only do this if you are comfortable with editing theme files if not you should use a plugin such as “Custom Post Type UI”): function custom_post_type() { $labels = array( ‘name’ => ‘Articles’, ‘singular_name’ => ‘Article’, ‘add_new’ => … Read more