The list tag has no wiki summary.
0
votes
3answers
483 views
Listing all sub-pages?
I'm wondering how to write a list of sub-pages of actually visited page.
So I have 2 pages and 3 sub-pages for each:
Colors [page]
- Red [child of Colors - subpage]
- Blue [child of Colors - ...
1
vote
1answer
1k views
Check child/parent categories if exists
i am serching a WP function that controls is there any child category/ies of current category (in category.php outside of the loop) and if there is, just add link list for that category/ies to page, ...
0
votes
1answer
478 views
How to Configure Events List in Wordpress to Disappear Event Once Date is Past
I currently have some code setup to display upcoming events set by the admin based on the date of the event. The upcoming events are sorted by the next upcoming event, starting from the top, and then ...
1
vote
1answer
855 views
wordpress wp_list_categories
i'm using wp_list_categories like so:
<?php
//list terms in a given taxonomy using wp_list_categories (also useful as a widget if using a PHP Code plugin)
$taxonomy = ...
0
votes
1answer
790 views
List Child Categorie and hide the parent
Greetings!
I'm trying to list child categories in a sidebar, but also hide the parent cat.
I'm using this at the moment:
<?php ...
5
votes
2answers
580 views
Only Showing Upcoming Events
In the sidebar of this page: http://lifebridgecypress.org/our-people, I have a list of upcoming events using this code...
<ul id="upcoming-events">
<?php
$latestPosts = new WP_Query();
...
1
vote
4answers
395 views
Looking for a subscriber list management system
Is there any plugin that enables the creation of forms and has a smart tool for subscribers (not site visitors who registered) database management?
I'm looking for a plugin that does that for a long ...
2
votes
2answers
155 views
Similar posts formatting
I'm using the similar posts plugin http://wordpress.org/extend/plugins/similar-posts/, and I want the similar posts to show on the same line instead of as a list...
like
link 1, link 2, link 3, link ...
0
votes
1answer
290 views
How to replace “Password Protected” text with icon in Admin
In Wordpress, whenever a post is password protected the backend admin area appends the text in bold "- Password protected" after the post title.
What I am looking for is a way to remove this text and ...
1
vote
1answer
508 views
wp_get_archives() display months even if there is no posts
Hay, the example on the wp_get_archives documentation page shows how to show a list of all the posts, by months. However if there is no posts for a month, the month doesnt get displayed.
So an ...