Tagged Questions
2
votes
1answer
150 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( ...
2
votes
4answers
193 views
Filter link to existing content suggestion
How can i filter the link given in "link to existing content".
Eg:
As in the above image. I just want WSP BANNER TO BE SHOWN.
where WSP BANNER & CALENDAR are custom POST types
Any help will ...
0
votes
1answer
104 views
Image not showing up in media loader success area - followup
This is part two to this question:
Post Specific Uploader
I am using an upload filter to put files in a location based on post_id. Now when the file uploads, the URL path in the meta is wrong and the ...
2
votes
2answers
4k views
Default Image Link Removal
Just wondering if there is a way to remove WordPress's default function of adding a tag around an inserted image. I assume its a "remove_filter" function like you can do for WPAutoP, but all my ...
1
vote
1answer
445 views
Can't filter wp_get_attachment_link
Can't figure out why this won't work:
function my_get_attachment_link($html){
$postid = get_the_ID();
$html = str_replace('<a','<a rel="shadowbox['.$postid.']"',$html);
return ...