【问题标题】:Match incremented class with incremented ids from different loops [jQuery / Wordpress]将递增的类与来自不同循环的递增 id 匹配 [jQuery / Wordpress]
【发布时间】:2015-02-15 16:54:06
【问题描述】:

经过数小时的研究和尝试和错误,我在这里开始我的第一个问题。 如果它可以用wordpress语法来完成就更好了。否则我想我已经接近解决方案了。

我想要一个 wordpress 模板页面上的自定义图库,但包含来自某些类别的帖子图片以及其中的内容。到目前为止一切都很好。

在我的designerin.php 模板中,我给每张图片一个img-x 类。

class="img-<?php echo $img_counter; ?>

并且内容得到 id img-x

id="img-<?php echo $post_counter; ?>

计数器只是一个增量。所以图像 1 有类 img-1,图像 2 img-2 等等。 现在,当您单击此特定图像时,我希望显示在 wordpress 编辑器中创建的该图像的相关内容。

假设您单击图像 5 并想要图像 5 中的内容。 我被困在我所说的(在 jQuery 中)显示内容的步骤上

    if .img-x == #img-x {
       display the_content()
    }

说得够多了 - 这是我的 jQuery 代码:

    $(".large-img-wrapper").hide();

$('.gallery li').on('click', function(e) {
    e.preventDefault();
    var largeImgLink = $(this).find('a').attr('href');
    $(".large-img-wrapper").first().fadeIn();
    var imgContent = $('#img-5').html();

    $('#large-img').remove();
    $('#append-id').remove();
    $(".large-img").append('<img id="large-img" src="' + largeImgLink + '">').fadeIn();
    $(".large-img").append('<div id="append-id">' + imgContent + '</div>').fadeIn();
    $(".large-img-container .img-title").remove();
});

var imgContent 只是一个测试。目前,每张图片都显示了图片 5 中的内容。 我的模板页面代码:

<div class="row content full-width">

<div class="cats row">
<a href="#" class="sort-link" data-category="Alle Kategorien">Alle Kategorien</a>
<?php query_posts( 'category_name=designerin&posts_per_page=-1'); if (have_posts()) : while (have_posts()) : the_post();

$categories = get_the_category();
$separator = ' ';
$output = '';
if($categories){
foreach($categories as $category) {
$output .= $category->cat_name;
}
}
$cat_name = get_category(get_query_var('cat'))->name;
?>
<a href="#" class="sort-link" data-category="<?php echo trim($output); ?>"><?php echo trim($output); ?></a>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
</div>

<ul class="row small-block-grid-3 medium-block-grid-5 large-block-grid-8 gallery">
<?php $img_counter = 0; ?>
<?php query_posts( 'category_name=designerin&posts_per_page=-1'); if (have_posts()) : while (have_posts()) : the_post();
$img_counter++;
$thumb_id = get_post_thumbnail_id();
$thumb_url_array = wp_get_attachment_image_src($thumb_id, 'thumbnail', true);
$large_url_array = wp_get_attachment_image_src($thumb_id, 'large', true);
$thumb_url = $thumb_url_array[0];
$large_url = $large_url_array[0];
$categories = get_the_category();
$separator = ' ';
$output = '';
if($categories){
foreach($categories as $category) {
$output .= $category->cat_name;
}
}
?>
<li>
**<a href="<?php echo $large_url; ?>" class="thumbnail img-<?php echo $img_counter; ?>" data-categories="<?php echo trim($output); ?>"><img src="<?php echo $thumb_url; ?>" alt="<?php echo the_title(); ?>"></a>**
</li>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
</ul>

<?php $post_counter = 0; ?>
<?php query_posts( 'category_name=designerin&posts_per_page=-1'); if (have_posts()) : while (have_posts()) : the_post();
$post_counter++;
?>
**<ul class="large-img-wrapper">
<li>
<div class="large-img-container">
<div class="large-img"></div>
<div class="img-content" id="img-<?php echo $post_counter; ?>">
<div class="img-title">
<?php echo the_title(); ?>
</div>
<div class="img-text">
<?php echo the_content(); ?>
</div>
</div>
</div>
</li>
</ul>**  
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?> 

</div>

第一个查询是按 slug 过滤类别。

我的最后一次尝试感觉如此接近..

        var inc = '5';
    var objClass = $(this).find("a").hasClass( "img-" + inc );

    console.log(objClass);

当我点击第五张图片时,我得到“真实”。但是如何获得与我的模板 php 代码相关的 X (inc)?

对不起,我的英文和可能的错误代码

【问题讨论】:

    标签: javascript php jquery html wordpress


    【解决方案1】:

    如果我理解正确,这可能会有所帮助

    $('.gallery li').on('click', function(e) {
       e.preventDefault();
       var className = $(this).find('a').attr('class');
       var imgContent = $('#'+className).html();
    }); 
    

    【讨论】:

    • 感谢您的帮助。问题在于 className 包含标记中的所有类。 console.log 给了我“thumbnail img-2 show-thumb”。我可以剥离 img-x 旁边的所有内容吗?然后过滤 x?
    • var classname= $(this).find('a').attr('class').split(' ')[1];
    • 非常感谢!我认为这会更难,但你找对地方了!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2011-03-30
    • 2018-02-06
    • 2018-12-02
    • 2021-09-06
    • 1970-01-01
    • 1970-01-01
    • 2012-03-04
    相关资源
    最近更新 更多