Make WordPress Core

Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#20129 closed defect (bug) (invalid)

get_bookmark object should return array of categories

Reported by: andrewheins's profile andrewheins Owned by:
Milestone: Priority: normal
Severity: minor Version: 3.3.1
Component: Taxonomy Keywords:
Focuses: Cc:

Description

get_bookmark() returns a bookmark object with a single taxonomy and term_id, which are returned as strings.

In the WordPress admin section, it's possible to select multiple categories for a link (or bookmark, as it were).

get_bookmark() currently pulls all bookmarks for the categories you choose, and then runs array_unique on them to weed out duplicates. You only wind up with whatever the first category it pulled from.

It would be more consistent to merge those duplicate links, creating an array of term_ids for that bookmark, and allowing the developer to pull all of the terms for that bookmark.

Change History (3)

#1 in reply to: ↑ description @solarissmoke
13 years ago

  • Keywords reporter-feedback added

Can you post a code example showing actual vs expected output? From what I can see, the function already returns an array of category IDs, which seems to be what you want:

array (
  'link_id' => 1,
  'link_url' => 'http://codex.wordpress.org/',
  'link_name' => 'Documentation',
  'link_image' => '',
  'link_target' => '',
  'link_description' => '',
  'link_visible' => 'Y',
  'link_owner' => '1',
  'link_rating' => 0,
  'link_updated' => '0000-00-00 00:00:00',
  'link_rel' => '',
  'link_notes' => '',
  'link_rss' => '',
  'link_category' => 
  array (
    0 => 2,
    1 => 12,
    2 => 15
  ),
)

#2 @andrewheins
13 years ago

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

Ah, I see now. That's what happens if you pull it with an ID.

Last edited 13 years ago by andrewheins (previous) (diff)

#3 @SergeyBiryukov
13 years ago

  • Keywords reporter-feedback removed
  • Milestone Awaiting Review deleted
Note: See TracTickets for help on using tickets.