Tagged Questions
0
votes
1answer
42 views
Why the custom post type links don't work if not login?
I have created a custom post type "events" to display event information. All links to the events work well when I am logged in. However, if I am not log in, all the links for events that set in the ...
0
votes
1answer
141 views
Link to full size post thumbnail
I´m using this code:
<?php
// get portfolio
$args = array( 'post_type' => 'portfolio', 'posts_per_page' => 100, 'orderby' => 'title', 'order' => 'asc' );
$loop = new WP_Query( $args ); ...
2
votes
1answer
173 views
Taxonomy terms with edit/filter link in wp-admin, in the list of custom posts
I'm using get_the_term_list and manage_posts_custom_column to display the terms of a custom taxonomy in the list of custom posts, in the WordPress Admin.
add_action( ...
1
vote
1answer
160 views
Removing custom post type from link search results
I have created a custom post type and disabled it from appearing in search results. However when I add a link from a normal post, I still get these entries from my custom post type available to link ...
0
votes
1answer
204 views
Adding link to dashboard sidebar, nested under custom post type
I hope there is an easy answer for this, as it doesn't seem like it should be difficult and could make my backend much easier for other's to use.
I'm trying to add links to custom post types - that ...
3
votes
1answer
138 views
What is the use of the wp_links table?
I'm wondering what is the use of the wp_links table, couldn't links have been implemented as a custom post type, if the menu system also uses custom post types?
0
votes
1answer
112 views
Linking to Post Types from wp-admin
Morning all,
I'm having a bit of trouble finding a function I can use to link to a post type from the admin area. I'm actually using something as simple as:
<a ...
0
votes
2answers
108 views
Website bookmarks as a custom post type
Let me first explain what I am wanting to do...
I am wanting to add all my hundreds of website bookmarks that I have now in my browser, into wordpress for the following reasons.
Can search my ...
2
votes
1answer
142 views
Related links - from other sites
I'm in middle of re-building a website that's coded in a rather terrible custom CMS. Since the site is essentially a blog, I've been doing it in Wordpress.
One thing I'd like to do is be able to add ...
2
votes
1answer
282 views
How do I display custom post types through a common taxonomy?
I have posts and I have recipes. Recipes is a custom post type. Recipes make use of the category taxonomy and a newly added recipe has been categorized under beer. When I browse the listing page for ...
6
votes
5answers
1k views
Building a Digg clone using WordPress?
I am thinking of building a site similar to Digg.com (the old version). I think the best way in my case is to make a custom post type for the links and then use a a plugin such as TDO Mini Forms or ...