plugin-icon

עמודה לתמונה ראשית

מוסיף עמודה חדשה במסך רשימת הפוסטים, העמודים והתכנים המותאמים, ומציג תמונה ראשית אם היא הוגדרה.
דירוגים
4.8
עודכן לאחרונה
June 25, 2017
גרסה
0.3.2
התקנות פעילות
3K
עמודה לתמונה ראשית

As of version 0.2.2 you can select which post types you'd like to have the image column. It simply adds a column before the title (far left) the show's the posts featured image if it's supported and exists.

Want to change the default image? Simply filter you own image by using featured_image_column_default_image or filter your own CSS by using the featured_image_column_css filter hook.

Example actions/filters

Add support for a custom default image

function my_custom_featured_image_column_image( $image ) { if ( !has_post_thumbnail() ) { return trailingslashit( get_stylesheet_directory_uri() ) . 'images/featured-image.png'; } return $image; } add_filter( 'featured_image_column_default_image', 'my_custom_featured_image_column_image' );

Remove support for post types Use the featured_image_column_init action hook for your filter.

function frosty_featured_image_column_init_func() { add_filter( 'featured_image_column_post_types', 'frosty_featured_image_column_remove_post_types', 11 ); // Remove } add_action( 'featured_image_column_init', 'frosty_featured_image_column_init_func' ); function frosty_featured_image_column_remove_post_types( $post_types ) { foreach( $post_types as $key => $post_type ) { if ( 'post-type' === $post_type ) // Post type you'd like removed. Ex: 'post' or 'page' unset( $post_types[$key] ); } return $post_types; }

Add your own CSS to change the size of the image.

/** * @use '.featured-image.column-featured-image img {}' */ function my_custom_featured_image_css() { return trailingslashit( get_stylesheet_directory_uri() ) . 'css/featured-image.css'; //URL to your css } add_filter( 'featured_image_column_css', 'my_custom_featured_image_css' );

For more question please visit http://austin.passy.co

חינםבתוכנית Creator
בביצוע ההתקנה, אנחנו מקבלים את הסכמתך לתנאי השירות של WordPress.com ולתנאים של התוסף של הצד השלישי.
התקנות פעילות
3K
נבדקו עד
4.8.25