Seeing as my comments seemed to answer the question:
To get access to the URL params you want $wp_query->query_vars['myvar']
: http://wordpress.org/support/topic/how-to-pass-value-in-wordpress-url, e.g.:
<?php
global $wp_query;
$node_id = 0;
$args = array(
'post_type' => 'jobs',
'category_name' => $wp_query->query_vars['position_name']
);
$the_query = new WP_Query( $args );
The other parts of the question aren’t really WordPress issues, so Stack Overflow is the best place to ask them. For the updating the page you can either redirect the page onto itself using a javascript redirect for the onchange event or you can use AJAX to update the contents for the onchange event without a page refresh.
Related Posts:
- Inject post (from specific category) between posts in Loop
- User Defined order on get_categories?
- Custom widget using get_categories select menu dropdown
- Select dropdown not showing selected value php
- Custom Loop through category menu to include sub categories
- How to exclude specific category from the get_the_category(); array
- How to make drop down post title
- How to pick the default selected value in wordpress dropdown?
- how to save selected option in variable for rest api category filter
- Alert Bar section within WP loop is displaying even though there are no posts
- Display category name only once inside loop
- wp_dropdown_pages auto submit
- I’m trying to create an array with a foreach loop, but the array only stores the last item [closed]
- How do I remove a category from a wordpress loop>
- How to get the last category name of a child category?
- How to get current post category details inside “loop”?
- HTML dropdown setting not showing last saved value in the database
- Sorting dynamic select/dropdown for Contact Form 7 of Modern Tribe Events posts
- Problem with custom loop and wp_list_pluck [closed]
- Echoing a CSS class based on category of post in a list
- Do not duplicate posts with multiple categories in multiple loops
- Custom Taxonomy Select Menu: Setting default option value?
- go to home page when i select default in select-box
- Compare current post Category in select menu
- How to set value selected using select2 jquery plugin
- Dropdown category field inside repeatable metabox
- How to make a pagination with dropdown selection?
- Return to the beginning of the results of a for loop
- Exclude category and post from loop in custom category.php
- PHP drop down menu for my get_category child of
- Error trying import one category on page
- Remove the_content From Loop
- Open WordPress Page from selected option dropdown
- Display current category title on category page
- How to correctly submit a search form and display the result in an independent page
- Installing wp3.2.1 on IIS; getting empty sessions
- Want to separate sections of posts. Can you restart loop?
- List all categories but exclude current post category on single post page
- Specific Loop For 2 Within Each
- Two posts in same div – WP loop
- Replacing the NavWalker dropdown element
- Woocommerce, recognize the loop of related products
- Edit category output
- Easiest way to show total number of subpages
- Archive dropdown styling not applied
- Different background-image by category
- Output 2 items within the Loop
- How can I add pagination and how can I change thumbnail size?
- Display post category in foreach loop with category link
- How to show single category archive
- Increase offset while looping
- Hide subcategories (widget)
- remove post that has no content
- How to show only subcategories in parent category not parent category?
- Get post id within comments loop
- Syntax error when I try to insert my loop into an unordered list? [closed]
- Custom Pagination is Broken
- How to overwrite orderby with add_query_var
- Get latest post from all categories except one
- get_the_ID() in the footer returns wrong value
- Show ACF field with link to ultimate member profile/WordPress user profile below the post (single post layout)
- Custom post type category not displaying category ID
- WP_Query multiple post results
- Convert Featured products loop into Recent products loop?
- Posts are not looping through correctly
- Limit tags shown in post
- Create Div Wrapper On 3rd Iteration Or When Query Loop Items Run Out
- Add class to every other posts using get_posts
- Wp Query : Order by distance lat,lon
- Remove Custom Post Category In WordPress Slug Using .Htaccess
- How to Add a cutsom slug to my custom author role
- Give ID to divs inside the loop
- Get main parent category for post (WordPress/Advanced Custom Fields)
- How to output the taxonomies that are assigned to each custom post?
- Looping through dummy posts and showing them in the main index.php
- Link to index.php from home.php?
- Custom Loop.php having a loop inside a loop
- ACF – Get ID of relationship field in flexible content
- Reload page with a different shortcode when a user selects from a dropdown
- WordPress Ajax filter: Create two loops for different output styles?
- How to display sticky post always at the top (before regular post) in wordpress?
- How to count posts posts if they are in a separate content page?
- Populate Posts based on category selected using AJAX that means without page refresh
- random woocommerce categories are not showing when count enabled?
- How to sort (orderby) a query done by a template function before the ‘foreach’ loop?
- How to Retrieve All Category Images on Front-End
- Add div after every 4 posts then every 2 posts for a responsive loop
- Retrieving specific images from Media Library
- Custom Taxonomy Link Text Echo Name Not Slug
- Adding unique marketing messages between certain products whilst using isotope/Infinite Scroll
- custom field meta-box with dropdown/autocomplete
- Is there a way to randomize and connect a background and header image?
- the_post_thumbnail unless video id is added
- dynamically filter by category via sub-menu
- Get unique post in parent category
- WordPress post pagination on custom template not working
- Implement “No related posts for this entry” into the loop?
- Options.php loop won’t show!
- Contact form with dynamic dropdown and filter
- How to get posts by a certain author in inner loop using outer loop variable or post title WordPress