Viewing 1 item
Tag Archives: HTTP_HOST

How To Get the URL of the page you are on with PHP

Wisdom taken from here: http://wordpress.org/support/topic/how-to-get-the-url-of-the-page-you-are-on-with-php If you are in the WordPress loop: Yes it will work for lists of posts, providing they use a regular loop.. the_permalink() is a loop function, it’s made for use “in the loop”. If you have a non-standard loop, you can just as easily use… echo get_permalink($ID); where $ID is a variable where  Full Article…

0