zefdesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Using Shortcodes in themes<?php query_posts('showposts=1&cat=18'); ?> <?php while (have_posts()) : the_post(); ?> <?php echo proplayer("[pro-player]$video_url[/pro-player]"); ?> <?php endwhile; ?>
That’s my code and it isn’t working… I apologise if anything im saying here is beyond stupid.
Forum: Fixing WordPress
In reply to: Using Shortcodes in themesSorry I wasn’t clear there. I don’t know what code I need to put between the [pro player] tags to make my custom field called music_url appear there.
Forum: Fixing WordPress
In reply to: Using Shortcodes in themesI’m trying to do exactly the same. My php knowledge isn’t good enough to insert a custom field in-between the code. Please help.
<?php query_posts('showposts=1&cat=18'); ?> <?php while (have_posts()) : the_post(); ?> <?php proplayer("[pro-player] <strong>THIS IS WHERE I WANT THE CUSTOM FIELD TO APPEAR</strong> [/pro-player]"); ?> <?php endwhile; ?>
That’s my code.
Forum: Fixing WordPress
In reply to: Bugged up my widgets menu, site ruinederr please help
Forum: Fixing WordPress
In reply to: Show date based arhcives of just ONE category.Forum: Fixing WordPress
In reply to: Show date based arhcives of just ONE category.I’m even more of an idiot, of course that was not working, so once again i remain stuck despite searching high and low.
I want to edit archive.php to ONLY display posts from category one…
Forum: Fixing WordPress
In reply to: Show date based arhcives of just ONE category.HAH! I am an idiot. I have solved my problem, simply by using query posts on the archive.php file. As simple as that.
Forum: Fixing WordPress
In reply to: Show date based arhcives of just ONE category.Been having a think and i can simplify this question.
What sort of code can I use to create a list which shows archives of just ONE category.
example:
January – takes you to list of all posts from category 1 from january
Febuary – takes you to list of all posts from category 1 from january
March – takes you to list of all posts from category 1 from januaryForum: Fixing WordPress
In reply to: Displaying list of child pages on one pageI mean viewing all posts from one month eg January. I have a drop down in my sidebar that displays posts from one month. I’m assuming I will only need to edit the code for the index.php file to exclude categories or display just one.
Forum: Fixing WordPress
In reply to: Displaying list of child pages on one pageOkay That makes sense, I understand that. Well in that case it is possible to make my main page which is the latest blog entries, and my date based archives etc display one particular category then? How would I implement this, I have tried using query_posts.