Make WordPress Core

Opened 13 years ago

Closed 13 years ago

Last modified 6 years ago

#15392 closed defect (bug) (wontfix)

Allow custom post formats

Reported by: ptahdunbar's profile ptahdunbar Owned by:
Milestone: Priority: normal
Severity: normal Version: 3.1
Component: General Keywords: has-patch
Focuses: Cc:

Description

Don't restrict the community based on arbitrary standardizations. If we're getting post formats in 3.1, support it all the way or don't include the feature all at.

Attachments (1)

ticket.15392.post_formats_filter.diff (388 bytes) - added by ptahdunbar 13 years ago.

Download all attachments as: .zip

Change History (7)

#1 @nacin
13 years ago

  • Milestone Awaiting Review deleted
  • Resolution set to wontfix
  • Status changed from new to closed

See #14746. WONTFIX.

#2 @ocean90
10 years ago

#29099 was marked as a duplicate.

#3 @Stagger Lee
10 years ago

New 3.9.2 upgrade just ruined 5 of my websites. Need to put in config file to disable automatic updates. Seems as core upgrade doesnt touch post-formats.php file, but language files do it in some way, and all custom post formats are gone.

It would be very nice if we could overide in functions.php, and add new ones formats.

function get_post_format_strings() {
	$strings = array(
		'standard' => _x( 'Standard', 'Post format' ), // Special case. any value that evals to false will be considered standard
		'aside'    => _x( 'Aside',    'Post format' ),		
		'chat'     => _x( 'Chat',     'Post format' ),
		'gallery'  => _x( 'Gallery',  'Post format' ),
		'link'     => _x( 'Link',     'Post format' ),
		'image'    => _x( 'Image',    'Post format' ),
		'quote'    => _x( 'Quote',    'Post format' ),
		'status'   => _x( 'Status',   'Post format' ),
		'video'    => _x( 'Video',    'Post format' ),
		'audio'    => _x( 'Audio',    'Post format' ),
	);
	return $strings;
}

Is it to much to ask ?

#5 @Stagger Lee
10 years ago

Thank you, have seen it already.
Beeing most interested to fix my old sites with custom post formats nad core changes. Now i made loop to same content-postformat.php files and disabled post formats completelly. No need to touch core code again and automatic updates can be activated. For future websites will use custom category templates.

#6 @ocean90
6 years ago

#43574 was marked as a duplicate.

Note: See TracTickets for help on using tickets.