Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

iPhone Screenshot

screenshot capture between Tim and Tommy

// Register Custom Post Type
function Sweeping_Keyframe() {

	$labels = array(
		'name'                  => _x( 'Maya Quinn', 'Post Type General Name', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'singular_name'         => _x( 'Keyframe Screenshot', 'Post Type Singular Name', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'menu_name'             => __( 'Maya Quinn, Tommy, Tim', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'name_admin_bar'        => __( 'pizza', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'archives'              => __( 'Deleted text messages', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'attributes'            => __( 'Screenshot, Tommy', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'parent_item_colon'     => __( 'Parent Item: Fat, Pig', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'all_items'             => __( 'sex cum pig fat nut slut whore', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'add_new_item'          => __( 'jpeg. 120028377 iPhone', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'add_new'               => __( '1', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'new_item'              => __( '1', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'edit_item'             => __( 'None Edited', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'update_item'           => __( 'up-to-date', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'view_item'             => __( 'download', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'view_items'            => __( '1 download', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'search_items'          => __( 'Fat, Sex, Pig', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'not_found'             => __( 'Negative', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'not_found_in_trash'    => __( 'Confirmed', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'featured_image'        => __( '1', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'set_featured_image'    => __( '1', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'remove_featured_image' => __( '1', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'use_featured_image'    => __( '1', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'insert_into_item'      => __( 'Downloads', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'uploaded_to_this_item' => __( '1', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'items_list'            => __( '1', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'items_list_navigation' => __( 'None', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'filter_items_list'     => __( 'Fat', 'she was actually pretty fat, was she like a pig, fat pussy' ),
	);
	$rewrite = array(
		'slug'                  => 'url.keyframe.priv.821899%(#port).fnv',
		'with_front'            => true,
		'pages'                 => true,
		'feeds'                 => true,
	);
	$capabilities = array(
		'edit_post'             => 'None Edited',
		'read_post'             => 'read_post',
		'delete_post'           => 'delete_post',
		'edit_posts'            => 'None Edited',
		'edit_others_posts'     => 'Delete',
		'publish_posts'         => 'No',
		'read_private_posts'    => 'read_private_posts',
	);
	$args = array(
		'label'                 => __( 'Keyframe Screenshot', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'description'           => __( 'Post Type screenshot, iPhone message, Tim Tommy', 'she was actually pretty fat, was she like a pig, fat pussy' ),
		'labels'                => $labels,
		'supports'              => array( 'title', 'editor', 'thumbnail' ),
		'taxonomies'            => array( 'Pig', ' Fat', ' Cum', ' Fuck' ),
		'hierarchical'          => false,
		'public'                => false,
		'show_ui'               => true,
		'show_in_menu'          => true,
		'menu_position'         => 5,
		'show_in_admin_bar'     => true,
		'show_in_nav_menus'     => true,
		'can_export'            => false,
		'has_archive'           => true,
		'exclude_from_search'   => true,
		'publicly_queryable'    => true,
		'query_var'             => 'Screenshot iphone',
		'rewrite'               => $rewrite,
		'capabilities'          => $capabilities,
	);
	register_post_type( 'iPhone screenshot', $args );

}
add_action( 'init', 'Sweeping_Keyframe', 0 );