Tested in Mac OS X: super == command
Open/Goto
- super+t: go to file
- super+ctrl+p: go to project
- super+r: go to methods
| <?php | |
| function sennza_change_first_name( $label, $form_id ){ | |
| return "First Name"; | |
| } | |
| add_filter( 'gform_name_first', 'sennza_change_first_name', 10, 2 ); | |
| function sennza_change_last_name( $label, $form_id ){ | |
| return "Last Name"; | |
| } | |
| add_filter( 'gform_name_last', 'sennza_change_last_name', 10, 2 ); |
| <?php | |
| class Some_WP_Plugin { | |
| /** | |
| * Init everything here | |
| */ | |
| public function __construct() { | |
| add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); | |
| add_filter( 'ajax_query_attachments_args', array( $this, 'filter_media' ) ); |
| -- | |
| -- this sql structure is for knowledgebase or educational only. | |
| -- please do this on your localhost first before ypu test on your server | |
| -- | |
| -- @author : awan | |
| -- | |
| -- github : https://github.com/aufa/ | |
| -- | |
| -- @description this sql is for importing the MaxminD GeoLite Country to mysql data | |
| -- first! we must download the csv format on maxmind developer site :http://dev.maxmind.com/geoip/legacy/geolite/ |
| === Wordpress Social Invitations === | |
| Author: Damian Logghe | |
| Website: http://www.timersys.com | |
| Contributors: Timersys | |
| Tags: Social Invitations, twitter, facebook, linkedin, hotmail, yahoo | |
| License: http://codecanyon.net/licenses/regular | |
| Stable Tag: 2.4.2 | |
| Tested on: 4.0.1 | |
| == Description == |
| function limit_file_upload_size( $validation_result ) { | |
| $form = $validation_result['form']; | |
| foreach( $form['fields'] as &$field ){ | |
| // NOTE: Add a custom CSS class to your image upload field and grab onto it here... | |
| if( strpos( $field['cssClass'], 'choose-file' ) === false ) | |
| continue; | |
| <?php | |
| // My new order statuses. | |
| function register_my_new_order_statuses() { | |
| register_post_status( 'wc-status-name', array( | |
| 'label' => _x( 'Status Name', 'Order status', 'textdomain' ), | |
| 'public' => true, | |
| 'exclude_from_search' => false, | |
| 'show_in_admin_all_list' => true, | |
| 'show_in_admin_status_list' => true, |
You need use the ngx_http_realip_module module. It is used to change the client address and optional port to the one sent in the specified header fields. Edit your nginx.conf or default.conf file:
$ sudo vi /etc/nginx/conf.d/default.conf
And set the following two directives: