How To Create WordPress Dashboard Item

What you need to do in your case – is to create a custom post type. Please read about post types in WordPress here https://wordpress.org/support/article/post-types/ You can use a plugin to create Case Studies post type https://uk.wordpress.org/plugins/custom-post-type-ui/

How to exclude some post from admin edit screen

I’m not sure why you’re having trouble with pre_get_posts as that is the correct hook to use. For example, if we wanted to restrict the edit.php screen to only show posts from authors when the current user is an author we could say: /** * Pre Get Posts * Restrictions by Role * * @return … Read more

I can’t enter the control panel of my wordpress site after channing the URL to https://

If you have access to the database (for example, using phpMyAdmin), you can change the values in table “wp_options” — the fields are near the top… “site_url” and “home” You can also set this in the wp-config.php file. define( ‘WP_HOME’, ‘http://example.com’ ); define( ‘WP_SITEURL’, ‘http://example.com’ ); https://wordpress.org/support/article/changing-the-site-url/

Admin back end – get URL of file using file browser

You can scan the directory for files with glob() then loop throw the results and list them in a admin modal (thickbox) or just show the list within a admin metabox in the post editor. Here’s a little snippet that i was playing with. /** * Get HTML Article Files from uploads/articles * Support both … Read more