I have a blog. It has 43 page~47 pages. I want to add a php file on xxx.com/page/2/ How can i do that? Is there any way?
You can do it properly, or use a quick hack to wedge it in there. Drop this where you want it to appear in your template and it will only show when 'page/2' is in the url. <?php if( strstr( $_SERVER[REQUEST_URI], 'page/2/' ) ) include '/path/top/your/file.php'; ?> PHP: