I am using this plugin on my website now, but i would like to see the link fields to show up on custom post types too. How can i change the plugin so that it will allow links on any page, custom post type, etc and not just Posts?
I am using this plugin on my website now, but i would like to see the link fields to show up on custom post types too. How can i change the plugin so that it will allow links on any page, custom post type, etc and not just Posts?
I love this plugin!
I've been wondering the same thing. I've hacked the plugin a little to allow for it to show up in a custom post type.
But I'm not sure it's working properly on save.
Here's my hack so far:
/plugins/post-links/post-links.php
line 212:
// Register the meta boxes
add_meta_box('links', __('Links', 'post-links'), 'post_links_content', 'post', 'normal');
add_meta_box('links', __('Links', 'post-links'), 'post_links_content', 'page', 'normal');
// adding custom post type
add_meta_box('links', __('Links', 'post-links'), 'post_links_content', 'post-type-name', 'normal');
}
Mic
This topic has been closed to new replies.