Make WordPress Core

Opened 17 years ago

Closed 17 years ago

Last modified 17 years ago

#5662 closed enhancement (fixed)

Class Ancestor Pages

Reported by: aaroncampbell's profile AaronCampbell Owned by: ryan's profile ryan
Milestone: 2.5 Priority: normal
Severity: normal Version: 2.5
Component: General Keywords: has-patch tested
Focuses: Cc:

Description

The purpose is to add a class to ancestor pages. Right now, a CSS class is added to the current page (current_page_item), and it's parent (current_page_parent). I created a plugin (Mark Parent Pages Plugin) that uses the DOM to travel farther upstream, and tag all ancestor pages with a class as well (current_page_ancestor). Upon submitting the plugin to the plugin repository, I was told to "Please make this a core patch on Trac." So here it is. I haven't actually made the patch yet, but I'll try to when I get time. If someone else has time, please feel free. It seems like it should work just like the plugin.
The only real question is whether the parent should get tagged as an ancestor as well (with both classes). The plugin does, because it's purpose was to give me collapsing menus, and doing so made my css simpler:

#nav ul li.current_page_item ul,
#nav ul li.current_page_ancestor ul {

display:block;

}
#nav ul li.current_page_item ul ul {

display:none;

}

instead of

#nav ul li.current_page_item ul,
#nav ul li.current_page_parent ul,
#nav ul li.current_page_ancestor ul {

display:block;

}
#nav ul li.current_page_item ul ul {

display:none;

}

Attachments (2)

5662.diff (1.9 KB) - added by AaronCampbell 17 years ago.
5662.2.diff (2.0 KB) - added by jeremyclarke 17 years ago.
fixed to not throw errors on non-page screens

Download all attachments as: .zip

Change History (15)

@AaronCampbell
17 years ago

#1 @AaronCampbell
17 years ago

  • Keywords has-patch added

I only have 2.3.2 installed, so I can't test this patch right now on trunk, and it *is* slightly different (get_page changed). Basically, it achieves what the plugin does, but it does it in get_pages and get_post. For get_post, it uses a new function, get_post_ancestors(). Someone please test it and let me know how it works.

#2 @AaronCampbell
17 years ago

  • Keywords needs-testing added

#3 @AaronCampbell
17 years ago

The patch is imperfect. It doesn't work if you are on the main page (ID == 0). There are two ways to fix this. First, inside get_page you can replace if ( empty($page) ) { with if ( empty($page) && $page !== 0 ) { Alternatively, we could simply use get_post rather than get_page. I guess if we plan on phasing out get_page, then we should use get_post. If get_page is supposed to stay, you could use the other fix. I suppose we could also check for null being returned from get_page.

Someone want to weigh in?

#4 @jeremyclarke
17 years ago

  • Cc jeremyclarke added
  • Version set to 2.5

We discussed this in irc. The problem was that the start_el function from classes.php was throwing errors if you checked $_current_page->ancestors when you weren't on a page (because the $_current_page object was empty). The solution is just to check that the get_page worked and populated $_current_page, similar to how it is done a few lines down for post_parent.

if ($_current_page && in_array($page->ID, $_current_page->ancestors)) {

the attached diff fixes it. Tested on trunk.

@jeremyclarke
17 years ago

fixed to not throw errors on non-page screens

#5 @AaronCampbell
17 years ago

  • Keywords tested-working added; needs-testing removed

Thanks. I was over-thinking it. This was all added at Matt Mullenweg's request, so hopefully he will stop by and commit it.

#6 @darkdragon
17 years ago

  • Keywords tested added; tested-working removed

#7 @AaronCampbell
17 years ago

Do "tested" and "tested-working" have different meanings here? I was just following the tagging procedure I saw in another tickets:5615

#8 @AaronCampbell
17 years ago

Sorry, link to that ticket:
ticket:5615

#9 @darkdragon
17 years ago

Yeah, tested-working has no meaning, but tested does. It is implied that when something has "tested" that whatever it was that was tested was working, or you wouldn't have used the keyword.

I'm usually fixing thee17 keywords also. Trac Keywords Use that resource on Trac Keywords.

#10 @AaronCampbell
17 years ago

Thank you very much for the link as well as the help.

#11 @ryan
17 years ago

  • Owner changed from anonymous to ryan

#12 @ryan
17 years ago

  • Resolution set to fixed
  • Status changed from new to closed

(In [7074]) Introduce get_post_ancestors(). Add current_page_ancestor class to ancestors of the current page. Props AaronCampbell. fixes #5662

#13 @ryan
17 years ago

I removed the bits from get_pages because we've trying to get rid of those nasty loops. Split get_post_ancestors() into two functions. One to populate the ancestors field in the post object and another as a convenience function for fetching the ancestors array.

Note: See TracTickets for help on using tickets.