Multisite with Different Domains
This question is similar to Multisite with entirely different domains? which was not answered. I am re-asking.
This question is similar to Multisite with entirely different domains? which was not answered. I am re-asking.
1. My shortcodes I’ve developed multiple shortcodes for my own theme, I’m loading them in functions.php like this require_once (MY_URL . ‘/bartag_shortcode.php’). Here’s an exemplary bartag shortcode from WordPress Codex: function bartag_func( $atts ) { extract( shortcode_atts( array( 'foo' => 'something', 'bar' => 'something else', ), $atts ) ); return "foo = {$foo}"; } add_shortcode( … Read more
I have a custom meta box, using WPAlchemy, in which I am looking to get rid of. However, I would like to get all posts that have a specific custom meta value set, and insert it into the begininning of the post content, then delete the meta value.
I am trying to create a debugging mode in one of my plugins so users can easily enable WP_DEBUG on their own, and hopefully report back to us with helpful error messages. Right now we ask them to modify their wp-config.php, but that’s beyond some users’ capabilities. I was hoping to just add define( 'WP_DEBUG', true );in our plugin if the user has checked that option, but it appears you can only enable WP_DEBUG from the wp-config.php file.
Hi I have a website on wordpress which have 2 pages which I meant to convert it to subdomain.
I cannot find documentation or discussions on what is and how to use Drop-in plugins.
The question was raised in this Q&A, Populate content on install.
As the 5.0 is getting real, and so is Gutenberg…
I have a taxonomy wp_query and i would like to order the list by title and by meta value (numeric value)
The WordPress Heartbeat API uses admin-ajax.php to run AJAX calls. If User X leaves their browser open, many calls will be made to the server, with each call happening when there is a ‘beat’. Now if User Y leaves their browser open, many more calls will be made to the server, with each of these calls happening when there is a ‘beat’. It’s possible a large website will also have User A, User B and User C all do the same.
I am taking on a project where I need to build a static website (due to hosting restrictions).