Viewing 1 replies (of 1 total)
  • Thread Starter BillyAtStudioPretty

    (@billyatstudiopretty)

    I solved this myself by poking around in wp-admin/includes/media.php

    function my_image_attachment_fields_to_edit($form_fields, $post) {
    	$pte = pte_media_row_actions("", $post, "");
    	$pte = $pte['pte'];
    	$form_fields["custom_sizes"] = array(
    			"label" => __("Sizes"),
    			"input" => "html",
    			"html" => $pte
    	);
    	return $form_fields;
    }
    
    add_filter("attachment_fields_to_edit", "my_image_attachment_fields_to_edit", null, 2);
Viewing 1 replies (of 1 total)
  • The topic ‘customizing custom fields’ is closed to new replies.