php 阻止Wordpress将额外的10px宽度插入图像标题短代码。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 阻止Wordpress将额外的10px宽度插入图像标题短代码。相关的知识,希望对你有一定的参考价值。

<?php
// DO NOT INCLUDE OPENING PHP TAG

add_filter( 'img_caption_shortcode', 'custom_remove_additional_10px_from_captions', 10, 3 );
/**
 * Prevent Wordpress from inserting an extra 10px of width to image caption shortcodes.
 */
function custom_remove_additional_10px_from_captions( $val, $attr, $content = null ) {

    extract( shortcode_atts( array(
        'id'      => '',
        'align'   => '',
        'width'   => '',
        'caption' => ''
    ), $attr ) );

    if ( 1 > ( int ) $width || empty( $caption ) ) return $val;

    return '<div id="' . $id . '" class="wp-caption ' . esc_attr( $align ) . '">' . do_shortcode( $content ) . '<p class="wp-caption-text">' . $caption . '</p></div>';
}

以上是关于php 阻止Wordpress将额外的10px宽度插入图像标题短代码。的主要内容,如果未能解决你的问题,请参考以下文章

在 Wordpress 中定义新的裁剪图像大小

wordpress 主题(或任何主题,真的)的最大图像宽度

rtl wordpress 网站宽度大得离谱

PHP 阻止Wordpress上的恶意URL请求

php WordPress阻止管理员删除

PHP 阻止WordPress样式表被缓存