More Links
-
I try not to resort to the help and support but I have had one of those weeks!
have a custom post type and I use it in a number of different ways for FAQs and also a knowledge base.
The loop is quite simple
I get the value from the header that determines what heading it runs under
$meta_value = (string)$_GET['topic']; // I'm expecting a string in this value
I then set the query string (each post has a custom field
$query_string = 'post_type=faq&showposts=-1&meta_value='.$meta_value.'&meta_key=faq_type';
Then in the loop
`<?php the_content(‘Read More..’, FALSE);’
as we know the More tag then sends the output to single post but this is not where I want it to be. I can change the link much as I would strip out the internal page link more### but any ideas how to maintain my header information so I can redirect it back to the php I want it in.
- The topic ‘More Links’ is closed to new replies.