使用“选项选择值”突出显示选择元素中的活动页面选项值

时间:2014-06-27 10:29:12

标签: php jquery wordpress html-lists selectlist

我在我的网站上使用自定义wp查询来显示列表样式内的父页面中的所有页面,选择,当选择一个页面时,我被重定向到右页。

工作正常:

这是我的代码:

<?php

            $args = array(
            'post_type'      => 'page',
            'posts_per_page' => -1,
            'post_parent'    => '22',
            'order'          => 'ASC',
            'orderby'=>'meta_value',
            'meta_key'=>'nom_de_loeuvre'
            );

            $parent = new WP_Query( $args );

            if ( $parent->have_posts() ) : ?>

            <span class="styled-select">

                <select name="" onchange="location = this.options[this.selectedIndex].value;">

                <option>A - Z</option>



                <?php while ( $parent->have_posts() ) : $parent->the_post(); ?>


                        <option value="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
                        <?php the_field('nom_de_loeuvre'); ?>
                        , de 
                        <?php if(get_field('prenom_artiste')): ?>
                        <?php the_field('prenom_artiste'); ?>
                        <?php endif ;?>
                        <?php the_field('nom_artiste'); ?> | Galerie 
                        <?php if(get_field('prenom_galerie')): ?>
                        <?php the_field('prenom_galerie'); ?>
                        <?php endif ;?>
                        <?php the_field('nom_galerie'); ?>

                        </option>



                <?php endwhile; ?>


                </select>

            </span>

            <?php endif; wp_reset_query(); ?>

不,我正在尝试使用“选项选择值”高亮显示列表的活动页面。 在页面上,我希望选择列表显示在liste中的当前页面。 有人可以帮我吗?

我无法在网上找到解决方案或方法... 我不确定它是否可能,但我想如果是的话,它必须要添加到我的Wp查询或者jquery中?

非常感谢你的帮助......

0 个答案:

没有答案