phazescan
Member
Posted 10 months ago #
Ok... here is what i would like to do:
Blog A has a page, page 1, that will be updated regularly. Using the wp_list_pages function, the name/link of the page is shown on all the webpages of Blog A.
Blog B needs to to the same thing, but list the page 1 name/link from Blog A on all the webpages of Blog B, that when clicked opens in a new window.
OR
I need a way to update two pages in two different blogs once.
raskull
Member
Posted 10 months ago #
Study wp_nav_menu. If this is in use, you can set a menu item (page) in Blog B's navigation to link to a destination in Blog A (or anywhere in the world for that matter). For all practical purposes, it's a redirect, so, from a navigation-best-practices point of view, I would not necessarily recommend it.
Without knowing exactly what you are trying to achieve, I would suggest creating one blog that contains the common, master info pages. Then link to those pages from all the other blogs using wp_list_bookmarks, rather than using fake navigation.
phazescan
Member
Posted 10 months ago #
Thanks,
I think I will look into the wp_list_bookmarks function, that seems like a more viable solution.