Why am I seeing all these weird ‘loginid’ requests?
Why am I seeing all these weird ‘loginid’ requests?
Why am I seeing all these weird ‘loginid’ requests?
You are using get_the_title(), which needs to be echoed out. However, you have it inside the string. Also, you might want to use isset() rather than !empty(). Try this: if( isset( $destino_web ) && $destino_web !== ”) { echo sprintf(‘<p><strong>Web:</strong><a href=”https://wordpress.stackexchange.com/questions/168579/%s”>%s</a></p>’, $destino_web, get_the_title() ); }
Changing URLs for taxonomies and CPT
WordPress can generate numeric permalinks, which then 404
rewrite taxonomy-{taxonomy}-{term}.php terms
You just need to have a handler function that is called before content is sent to the browser. Without knowing exactly what you are trying to do, here is a general function that will work: function my_plugin_json_handler(){ /*First you should check the POST/GET Request for some variable that tells the plugin that this is a … Read more
URL masking of subdomain to main domain using .htaccess
It is possible as referenced here but you are talking about a great deal of customization in the Gravity forms plugin and like you said you are not a programmer yourself, so you better open a support ticket in their forums and they might be able to help. Also look at this code that can … Read more
Host frontpage via example.com and everything else via example.com/blog
Yes, multisite is not what you need here. I would try to map all subdomains on the same wordpress install, and then customize the template via the current URL. In the wp-config.php you then use the current URL as base url: define(‘WP_HOME’, ‘http://’ . $_SERVER[‘HTTP_HOST’]); define(‘WP_SITEURL’, ‘http://’ . $_SERVER[‘HTTP_HOST’]); You can also do different themes … Read more