Change wordpress loop under XXX pixels? Possible?

Hi,
Is it possible to add “media queries” to wordpress loops? Would like to change some conditionals under 769pixels is possible.

example:

desktop:

                $args = array(
                    'post_type' => 'offers',
                    'meta_query' => array(
                        array(
                            'key' => 'big',
                            'value' => '1',
                            'compare' => '!='
                        )
                    )
                );
                $the_query = new WP_Query( $args );

Under 769px:

                    $args = array(
                        'post_type' => 'offers'
                    );
                    $the_query = new WP_Query( $args );

ok i’ll bite. Why would you?
When you can just do it in css?
D

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.