Tagged Questions
1
vote
2answers
88 views
How can I link a CSS file only on single posts?
If I understand is_single() correctly, it's only supposed to return true when the current "post" (in a generic sense) is a literal post (i.e., it has a post_type of post), and that it will return ...
1
vote
2answers
635 views
Manually set global $post vars with an ID, in order to use template tags
I have a function retrieving ID's of posts by very specific means.
I need to be able to set the global $post in order to use functions like the_content(), which does not allow an ID as a parameter.
...
0
votes
1answer
407 views
how to limit and display tag?
Hi i need to show random 3 tags for a post. all my posts have been tagged with more than 10 tags, i need to display any 3 tags randomly.
for eg:
A sample post
<a href="/tag1">Tag1</a>
...
0
votes
2answers
308 views
<!--more--> help
I have a custom post type called "Blog", in my templates I looping over the blog type and doing the following,
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
...