Skip to content

Instantly share code, notes, and snippets.

@Pross
Created September 28, 2015 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pross/76e392468641d8f5374a to your computer and use it in GitHub Desktop.
Save Pross/76e392468641d8f5374a to your computer and use it in GitHub Desktop.
Fix for WPML site_url()
<?php
class WPML_Site_Url_DMS {
function __construct() {
remove_shortcode( 'pl_site_url' );
add_shortcode( 'pl_site_url', array( $this, 'fixed_site_url' ) );
}
function fixed_site_url() {
return site_url();
}
}
new WPML_Site_Url_DMS();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment