Advertisement
dgwatkins

sunrise.php

Apr 6th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. $sunrises = array(
  3.     "wpml_sunrise" => dirname( __FILE__ ) .  "/plugins/sitepress-multilingual-cms/tools/inc/sunrise.php",
  4.     "dm_sunrise" => dirname( __FILE__ ) .  "/plugins/wordpress-mu-domain-mapping/sunrise.php"
  5. );
  6.  
  7. foreach ( $sunrises as $sunrise ) {
  8.     if ( file_exists( $sunrise ) ) {
  9.         include $sunrise;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement