我试图将Wookmark jQuery插件应用于我的wordpress主题。实现使用Loop进行,因为主题的目的是创建视觉上令人愉悦的组合。 对于主题,我已经注册了一种新类型的帖子类型'并制作了一个循环,区分具有图片的帖子和没有图片的帖子。
问题当然是它不起作用。 没有返回错误,所有脚本都已到位[或者在我看来] - 但帖子没有收到WookMark应该应用的任何处理[jQuery Voodoo]。我得到了所有帖子,按顺序调用。
我已经通过functions.php文件将脚本排入我的主题:
if ( !function_exists('core_mods') ) {
function core_mods() {
wp_enqueue_script('jquery-custom', get_template_directory_uri().'/assets/wookmark/libs/jquery.min.js' );
wp_enqueue_script('wookmark', get_template_directory_uri().'/assets/wookmark/jquery.wookmark.js', array('jquery-custom'), false, false);
}
}
add_action( 'wp_enqueue_scripts', 'core_mods' );
page-portfolio.php的实际HTML如下:
<?php get_header(); ?>
<?php query_posts('post_type=portfolio') ?>
<?php if (have_posts()) : ?>
<script type="text/javascript">
(function($) {
$('.masonry-object').wookmark({
align: 'center',
autoResize: false,
comparator: null,
container: $('#masonry-container'),
direction: undefined,
ignoreInactiveItems: true,
itemWidth: 0,
fillEmptySpace: false,
flexibleWidth: 0,
offset: 2,
onLayoutChanged: undefined,
outerOffset: 0,
possibleFilters: [],
resizeDelay: 50,
verticalOffset: undefined
});
})(jQuery);
</script>
<div id="masonry-container">
<?php /* The loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="masonry-object" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<div class="masonry-thumbnail">
<a href="<?php the_permalink(' ') ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail('masonry-thumb'); ?>
</a>
<div class="masonry-title">
<?php echo the_title(); ?>
</div>
</div><!--.masonry-thumbnail-->
<?php elseif ( !has_post_thumbnail() ): ?>
<div class="masonry-details">
<h5>
<a href="<?php the_permalink(' ') ?>" title="<?php the_title(); ?>">
<span class="masonry-post-title">
<?php the_title(); ?>
</span>
</a>
</h5>
<div class="masonry-post-excerpt">
<?php the_excerpt(); ?>
</div><!--.masonry-post-excerpt-->
</div><!--/.masonry-entry-details -->
<?php endif; ?>
</div>
<?php endwhile;?>
</div> <!-- End .masonry-container -->
<?php endif; ?>
<?php get_footer(); ?>
附加到主题的CSS是这样的:
#masonry-container {
}
.post-area {
background: #ffffff ;
padding: 10px ;
}
.masonry-thumbnail {
}
.masonry-thumbnail img {
max-width: 100%;
height:auto;
}
.masonry-title {
position: absolute;
width: auto;
background-color: #ef9430;
color: #ffffff;
padding: 5px;
bottom: 0px ;
right: 0px;
}
.masonry-details {
padding: 10px;
background-color: #ffffff;
}
.masonry-object {
width: 25% ;
transition: all 1s ease;
}
.masonry-object:hover {
z-index: 2;
box-shadow: 0 0 20px #ffffff;
transition: all 1s ease;
}
答案 0 :(得分:1)
(function($) {...})(jQuery);
与$(function() {...});
首先会在遇到它时立即执行,第二个是$( document ).ready()
的jQuery简写,并且在DOM准备好JavaScript时运行。解决方案是将脚本移动到#masonry-container
div下面,或者使用ready事件。 WordPress中存在一个小问题,因为默认的jQuery使用jQuery.noConflict()
,因此$不会引用jQuery对象。我最喜欢的解决方案是:
jQuery(function ($) {
});
它将在文档就绪时运行,$作为jQuery别名。
附注: - 正如文档所述,在position: relative
div上使用#masonry-container
。