This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| | Name | P | W | L | D | PF | PA | PD | PTS | | |
| | :------: | :------: | :------: | :------: | :------: | :------: | :------: | :------: | :------: | | |
| | Doncaster RLFC | 6 | 5 | 1 | 0 | 238 | 72 | 166 | 10 | | |
| | Bradford Bulls | 6 | 5 | 1 | 0 | 206 | 73 | 133 | 10 | | |
| | York City Knights | 6 | 5 | 1 | 0 | 178 | 92 | 86 | 10 | | |
| | Whitehaven RLFC | 6 | 4 | 2 | 0 | 178 | 94 | 84 | 8 | | |
| | Hunslet RLFC | 6 | 4 | 2 | 0 | 139 | 130 | 9 | 8 | | |
| | Workington Town | 6 | 3 | 3 | 0 | 199 | 133 | 66 | 6 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Modern Font Stacks */ | |
| /* System */ | |
| font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif; | |
| /* Times New Roman-based serif */ | |
| font-family: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif; | |
| /* A modern Georgia-based serif */ | |
| font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ( function( $ ) { | |
| // hooks everything into document ready | |
| $(document).ready( function() { | |
| // create a function to actually fire the search | |
| function dosearch(t) { | |
| // do the ajax request for job search | |
| $.ajax({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function myplugin_enqueue_scripts() { | |
| /* hand the js for deleting uploads by ajax */ | |
| wp_enqueue_script( | |
| 'myplugin-utilities-ajax', | |
| plugins_url( '/assets/js/nameofjsfile.js', __FILE__ ), | |
| array( 'jquery' ), | |
| '1.0.0', | |
| true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function myplugin_ajax_job_search() { | |
| /* get the search terms entered into the search box */ | |
| $search = sanitize_text_field( $_POST[ 'search' ] ); | |
| /* run a new query including the search string */ | |
| $q = new WP_Query( | |
| array( | |
| 'post_type' => job_post_type_name, |
OlderNewer