redirect wordpress page

Status
Not open for further replies.
OP
T

thecreativeboy

Journeyman
In my blog i have to display my latest post in the first page.then after clicking the add more post button,it have go to the posts which didn't include the latest post.so for the add more post url i have to redirect another wordpress page which show the posts which didnt include the latest post.am i clear?
 

ravi_9793

TechTin.com
In my blog i have to display my latest post in the first page.then after clicking the add more post button,it have go to the posts which didn't include the latest post.so for the add more post url i have to redirect another wordpress page which show the posts which didnt include the latest post.am i clear?
You can edit the theme file.
 

khattam_

Fresh Stock Since 2005
I think editing theme is what you should do. Addin
Code:
<?php next_posts_link('&laquo; Older Entries') ?>
in the index.php where you require should serve your purpose.

However, if you wish to achieve that anyways, create a new post and click on the HTML tab (instead of visual) and then in the content, type in
Code:
<script>
location.href="*google.com";
</script>
Now, publish it. When you visit the page, you should be redirected to "*google.com".. change "*google.com" to whatever page you want to redirect to.
 
Last edited:
Status
Not open for further replies.
Top Bottom