How to access my php page in wordpress
The only way I can think of attempting this would be to have a custom page template that will pull in various bits of your custom PHP via get_template_part
The only way I can think of attempting this would be to have a custom page template that will pull in various bits of your custom PHP via get_template_part
Just an idea: Use a MU installation and give the blog names the names of the authors (use Sub-directories). This way you should get much closer to what you want to achieve with on board stuff. This means that you’ll get your author names appended to the original domain and when you go there, you’ll … Read more
Are you sure it works in other browsers? WordPress by default drops/unset all unknown variables. Check wp-includes/load.php inside the function wp_unregister_GLOBALS(). I had similar session variable issue and fixed it using (in functions.php) <?php // Enable session add_action(‘init’, ‘custom_init_session’, 1); function custom_init_session() { if (!session_id()) session_start(); } ie. Call session_start() during init instead of in … Read more
I’m familiar with attachment_fields_to_edit and don’t recall ever seeing anything on being able to do modification as granular as you’re suggesting. There’s a WP global $screen (or is it $screens) that perhaps might help but I’m not too sure. Have you considered – as hacky as it might sound – doing these things with CSS … Read more
Image Editor does not affect custom sizes!
This question does to a degree solicit opinionated answers, but I feel it’s a good one nonetheless. As far as my opinion goes and the way I handle things is this: Definitely use the same handle for the same script in all your plugins and/or themes. You don’t want to load exact duplicates, if two … Read more
I want to credit @wyck for his answer of setting: define( ‘WP_HTTP_BLOCK_EXTERNAL’, true ); I also just wanted to add that this and a lot of nice other config options are nicely documented in the Codex.
Text that is displayed after you click on browser RSS icon depends on the feed reader you are using. I don’t think you can modify what it displays directly through WordPress (correct me if I’m wrong). A simple workaround to achieve something similar to what you want would be placing feed links to different categories. … Read more
Comments not nesed with custom template
How do I copy all “extra” data (menus, widgets, etc) from one theme to another?