I have a question.
Is It possible to know which page I’m from ?
Example. If I go /blog/ from home I’ll display a div “From home”. Else nothing to display.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Can’t you use
<?php $_SERVER['HTTP_REFERER']; ?>? You will have to extract the page name value from the string, but it should be pretty straight forward, just converting it to an array (str_split() with ‘/’) and get the correct index for your permalink structure.