向特色图像添加说明

时间:2020-07-06 作者:jeno

如何将说明添加到“特色图像”字段(请参阅随附的屏幕截图)-类似于:“请参阅”;推荐尺寸-H980px x x W450px;。。?

screenshot of featured image without instructions

1 个回复
最合适的回答,由SO网友:rudtek 整理而成

Wordpress对此有一个钩子。以下是示例代码:

function featured_image_dimensions( $content, $post_id, $thumbnail_id ){
    $help_text = \'<p>\' . __( \'recommended dimensions - H980px by W450px\', \'my_domain\' ) . \'</p>\';
    return $help_text . $content;
}
add_filter( \'admin_post_thumbnail_html\', \'featured_image_dimensions\', 10, 3 );
将此代码添加到函数中。php和您应该可以很好地使用。

相关推荐

WP Large Images crash page

我遇到了一个问题,照片库中最宽的一面有多个7MB、4000px的图像,导致wordpress页面崩溃,或者页面变得没有响应。我使用smush调整图像大小。除了较小的图像,还有其他想法吗?还是更少的图像?