markdown WordPress中的Enque匹配高度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown WordPress中的Enque匹配高度相关的知识,希望对你有一定的参考价值。

jQuery Match Height's files and documentation can be found [here](https://github.com/liabru/jquery-match-height).

### Create a file called match.js to house the matchHeight function:

```
jQuery(document).ready(function($) {

    $(function() {
        $('.match').matchHeight({
            byRow: true,
            property: 'height',
            target: null,
            remove: false
        });
    });
    
});
```

### This code goes in your theme's functions.php to enqueue the matchHeight script as well as the script that initializes it.

```
function match_height_scripts() {
    if ( is_post_type_archive( 'issue' ) ) {
        wp_enqueue_script( 'match-script', get_stylesheet_directory_uri() . '/js/jquery.matchHeight-min.js', array( 'jquery' ) );
        
        wp_enqueue_script( 'match-custom-script', get_stylesheet_directory_uri() . '/js/match.js', array(), '1.0', true );
    }
}
add_action( 'wp_enqueue_scripts', 'match_height_scripts' );
```

以上是关于markdown WordPress中的Enque匹配高度的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Kotlin android 的改造中使用 enque 方法

markdown 增加WordPress中的最大文件上载大小

markdown WordPress中的自定义帖子类型和分类

markdown WordPress中的自定义帖子类型和分类

markdown 使Wordpress帖子中的视频嵌入响应。

在wordpress中用html替换markdown