Week of September 11-18, 2025
This report summarizes all pull requests created and merged across the TITAN Forecast Platform repositories during the week of September 11-18, 2025.
| Repository | PR # | Title | Opened Date | Merged Date | Assignee | Achievements |
|---|
Week of September 11-18, 2025
This report summarizes all pull requests created and merged across the TITAN Forecast Platform repositories during the week of September 11-18, 2025.
| Repository | PR # | Title | Opened Date | Merged Date | Assignee | Achievements |
|---|
| #alright best guess here, i'll be honest. i don't use wp-cli a lot other than what comes packaged in a vagrant | |
| wp post meta update <key> upgraded <value> true |
| /* | |
| honestly, i only use wp-rest now for ajax, so mine would actually look somehting like this: | |
| */ | |
| add_action('rest_api_init',function($server){ | |
| register_rest_route('my-plugin/v1','/add-email',array( | |
| 'methods' => 'POST', | |
| 'callback' => array($this,'add_email') //and i use class-based name-spacing and auto-loading as you can see | |
| ) ); | |
| }); |
| $args = array( | |
| 'post_type' => "company", | |
| 'nopaging' => false, | |
| 'posts_per_page' => '100', | |
| 'meta_query' => array( | |
| 'relation' => 'AND', | |
| array( | |
| 'orderby' => 'meta_value_num', | |
| 'meta_key' => 'sponsored', | |
| 'order' => 'DESC' |