PHP code example of webdevstudios / cpt-core
1. Go to this page and download the library: Download webdevstudios/cpt-core library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
webdevstudios / cpt-core example snippets
/**
* Load CPT_Core.
*/
CPT
*/
register_via_cpt_core( array(
__( 'Q & A', 'your-text-domain' ), // Singular
__( 'Q & As', 'your-text-domain' ), // Plural
'q-and-a-items' // Registered name/slug
) );
/**
* Load CPT_Core.
*/
allows you to override core methods, like CPT_Core::columns, and CPT_Core::columns_display
*/
class Actress_CPT extends CPT_Core {
/**
* Register Custom Post Types. See documentation in CPT_Core, and in wp-our-text-domain' ),
'film-actress'
),
array(
'supports' => array( 'title', 'editor', 'excerpt', 'thumbnail' ),
)
);
}
/**
* Registers admin columns to display. Hooked in via CPT_Core.
* @since 0.1.0
* @param array $columns Array of registered column names/labels
* @return array Modified array
*/
public function columns( $columns ) {
$new_column = array(
'headshot' => sprintf( __( '%s Headshot', 'your-text-domain' ), $this->post_type( 'singular' ) ),
);
return array_merge( $new_column, $columns );
}
/**
* Handles admin column display. Hooked in via CPT_Core.
* @since 0.1.0
* @param array $column Array of registered column names
*/
public function columns_display( $column, $post_id ) {
switch ( $column ) {
case 'headshot':
the_post_thumbnail();
break;
}
}
}
new Actress_CPT();