The get-bookmarks tag has no wiki summary.
0
votes
2answers
70 views
querying user bookmarks from a large number of bookmarks
I am trying to access the bookmarks created by a single user. The key is stored in the links table, attribute link_owner.
However, get_bookmarks() seems to load the entire table and all I am left ...
1
vote
1answer
63 views
How do I get link URLs from the Wordpress links backend into an array?
I'm currently running a blogroll on a site I'm working on by defining a variable with an array that has all the rss feed urls I want to pull from. Like this for example:
<?php // Get RSS Feed(s)
...
4
votes
3answers
238 views
Getting Links in Multiple Categories (intersection)
I am using get_bookmarks() to get bookmark links. I can get links posted in cat A or cat B, but I only want links in both A and B.
Example what I need:
I have three link categories cat#1, cat#2, ...
0
votes
1answer
28 views
get IDs from links categories
How I can get the IDs of all my links categories?
I'm writting a plugin to bookmark more easy using wp_insert_link() function.
Any ideas?
1
vote
1answer
313 views
how to add class to the ul returned by wp_list_bookmarks
wp_list_bookmarks returns HTML that has a ul with classes xoxo blogroll. I'd like to add another class to that ul, but can't seem to find an elegant way to do so.
wp_list_bookmarks does accept an ...
1
vote
1answer
375 views
wp_list_bookmarks display
I have a question about code on wordpress: I am trying to use code wp_list_bookmarks to list my featured communities that I have setup in "links categories." I want to be able to separate each link ...
2
votes
1answer
118 views
Getting only the most recent bookmark?
So, I was thinking I'd use WordPress' Bookmarks/Links content type to populate a slider...
...Except there are a grand total of four functions interacting with this part of WordPress.
I don't think ...
1
vote
1answer
193 views
get_bookmarks filter not supplying query argument (wp 3.1)
I'm using a filter on the get_bookmarks function. When I use two arguments in my filter function I get the result array and nothing for the second arg (it should be the parsed query).
Here's what I'm ...
0
votes
3answers
695 views
How to splice in wp_links links into the loop?
I want to create a loop where 2 or 3 items from my blogroll are spliced in like this:
<loop>
<post1>
<post2>
<blogroll1>
<post3>
<blogroll3> ...