Tagged Questions
0
votes
0answers
24 views
Display posts on a separate page from certain authors?
I've been working on this for days. I've tried the WP codex, Google searching, etc, and I know I'm not doing something right but my patience has run out :( .
I have 3 authors. I am trying to display ...
0
votes
1answer
51 views
Use an archive as the parent of a page?
how can I solve the following problem?
I have the category "Events" with the permalink www.myblog.com/events/ and of course single events like www.myblog.com/events/lets-party/. Now I want to add a ...
1
vote
1answer
101 views
How to add subcategories to the blogroll?
I'm looking for a way to create subcategories in my blogroll...
For example:
Downloads
-> Windows
-> Mac
-> Linux
I want to create a real page (not a widget) where the main categories and ...
1
vote
0answers
31 views
Path to Pages Resolves to Archive instead of Actual Content
When I upgraded to 3.4.1, the root level pages (ones that I had before, and any page I have afterwards) do not resolve to the actual page. No matter the name (so i don't think there is a slug issue), ...
0
votes
2answers
62 views
Styling Previous/Next Pages differently from Index
A friend of mine pointed me towards using child elements to style my index page so that I could have one loop and several different visual styles (a featured post, a smaller sub-featured post, and ...
1
vote
2answers
694 views
Displaying page content in category archive (archive.php)
I'm new to template editing in wordpress and I'm trying to get a page description to show up on my site but it is not appearing. The URL I'm trying to get to display the description is here:
...
0
votes
1answer
457 views
How can I use “getarchives_where” to get monthly archives for static pages?
I would like to get monthly archives for static pages. I tried to use the next code:
add_filter('getarchives_where','my_archives_filter');
function my_archives_filter($where_clause) {
return "WHERE ...
0
votes
1answer
150 views
Archive with specific keyword by category sorted by date
I need help to create a template for an archive with specific a keyword by category sorted by date. This is the code for my archive page so far: http://pastebin.com/WEjNGhJ1
My client wants every ...
0
votes
1answer
888 views
Archive limit the text of the_content
here's the code for my archive page..
<?php
/*
Template Name: Archive Page
*/
?>
<?php get_header(); ?>
<div id ="maincontent"class = "group">
<?php ...
0
votes
1answer
80 views
Archieve page, Advertisement Every 3 Posts
Currently this code http://pastebin.com/As0exwZy is displaying 10 posts because I set it in the Reading settings. Now what I want is to display a advertisement(widgetize) every 3 posts... how can I do ...
0
votes
3answers
382 views
Automatically create a new page daily with last three posts
Is it possible to create the following:
A new page dynamically daily, containing the last three posts
Archive this page, so that tomorrow's page is a new page, with the three newest posts
...
2
votes
1answer
565 views
Page queried instead of a custom taxonomy
When I try to get an archive for a custom taxonomy, WP searches for a page and doesn’t find anything.
The Setup
My code from the functions.php:
add_action( 'init', 'register_store_taxonomy' );
...