Jump to content

sc123

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Posts posted by sc123

  1. You're right in that they often won't be the same - also, what if there are looking at a WP post, then the path would be ./wp/?p=#.  That's why I need something that can handle everything below the /wp dir.  How could I use eregi to do that with this if/then?

  2. Your code is much cleaner, thanks!  It didn't work though as it still causes problems when browsing the wordpress part of the site.  For example, if I use the following code:

     

         define('WP_USE_THEMES', false);
         require('./wp/wp-blog-header.php');   

     

    ...the rest of the site works as intended, but if I want to use the /wp part of the site correctly I can only use the following code:

     

          define('WP_USE_THEMES', false);   

     

    The if/then statement would seem to perform this task, but for some reason it doesn't.

  3. This is going to be very basic, but I can't figure it out!  With the following code I'm simply trying to use "code A" if the user is anywhere under the /wp directory (Wordpress) and "code B" if they aren't.  If anyone has suggestions on how to make this code work or make it better please feel free!

     

    <?php if ($path == "http://www.sitename.com/wp") : ?>
    
    <?php 
      define('WP_USE_THEMES', false);   
    ?>
    
    <?php else : ?>
    
    <?php 
      define('WP_USE_THEMES', false);
      require('./wp/wp-blog-header.php');   
    ?>
    
    <?php endif; ?>

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.