Tagged Questions
0
votes
1answer
13 views
How to make in post Parent page children page list nummbered
Parent page
veggies
Its children pages are
carrots
peas
potato
How to put in post numbered list of Parent page?
Maybe better how to make same list to be ordered by date posted so some ...
0
votes
1answer
50 views
Custom wp_list_pages() function
I have following code in my .php file:
$my_pages = wp_list_pages("title_li=&child_of=".$my_id."&echo=0");
Then I create an <ul>
<ul>
<?php echo $my_pages; ?>
...
0
votes
1answer
55 views
Extra title output with this function wp_list_pages
here is the code :
add_shortcode ('get_menu_child','get_menu_child');
function get_menu_child ($att) {
global $wp_query;
$thePostID = $wp_query->post->ID;
$output = ...
0
votes
2answers
182 views
wp_list_pages: only show subpages on the parent page?
I'm using wp_list_pages('title_li=') on my site.
Some of my pages do have subpages, however I don't want to list them unitl I'm on an actual parent page that has subpages.
So imagine my front-page:
...
0
votes
1answer
81 views
Getting subpage of subpage - Custom posts
I have one page with custom posts. They are shown in one page with a list, you can choose one page and when you get to that page I need to show subpages of that page.
Here is so far ive made it, its ...
1
vote
1answer
94 views
List all-childpages on parent-page AND list child-pages on childpage itself but not the current one?
I have the following function that lists all Child-Pages of a page.
function show_subpages() {
global $post;
$subpages = wp_list_pages( array(
'echo' =>0,
...
0
votes
1answer
356 views
List child pages by slug not ID?
I am looking to use the wp_list_pages function to show children pages of a specific page ID. I was able to do this easily, but now I found an issue with it. I am running a Wordpress network of sites ...
0
votes
1answer
75 views
Exclude pages by menu order
i have a "Default Page Generator" on theme activation i have created...
in that file i set 'menu_order' for each page.
i want to exclude pages with menu order bigger then 50 from the default ...
2
votes
0answers
137 views
wp_list_pages sort order is different for different languages [closed]
I'm using the following code
wp_list_pages(array('exclude' => '','title_li' => '','sort_column' => 'menu_order'))
If I switch the language the sorting is different. One of the main menu ...
0
votes
4answers
221 views
Drag posts and pages so you can sort them in order
So has anyone done this? can be done? On wordpress admin, when you click List Pages, or List posts, I want to make a drag&drop in order to sort the pages/posts, but before I start I want to know ...
1
vote
2answers
227 views
wp_list_pages() but only show children on the branch you are on
Lets say I have this menu:
Top
|___ Sub 1
|___ Sub Sub 1
|___ Sub Sub 2
|___ Sub Sub 3
|___ Sub Sub 4
|___ Sub 2
...
0
votes
2answers
83 views
Home Page Information Panel Setup [closed]
Just been looking at this blog by Jeffrey Way - http://jeffrey-way.com/
I was wondering if I someone could please assist me with this particular WordPress site as I’m trying to setup my home page ...
0
votes
1answer
306 views
Check if page has subpages
I'm try to build a menu with wp_list_pages() that must work like this:
Main Page
-Subpage1
-Subpage2
I check if the Page has_subpage and i can see the 2 subpages when i'm in the Parent ...
0
votes
1answer
91 views
Parent/Child pages
I find that the parent/child pages in the "Pages" area of WordPress has become a bit confusing since the introduction of the new menu creation area.
Using the new menu system, as far as I know I can ...
0
votes
1answer
559 views
Is there a way to make a custom Page type?
In a theme I'm building, there are two main types of page. One is a product-gallery, one is for general info. I'd like to use wp_get_pages() or wp_list_pages() twice in the sidebar, one with a list of ...
0
votes
2answers
903 views
How should I set up a Tumblr blog at a WordPress Page?
I am developing a site for a client, let's call it whatever.com. He wants to have his Tumblr blog at whatever.com/blog. (Tumblr lets you name the URL at which your Tumblr page will be served, and if ...
