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 | |
| //* Do NOT include the opening php tag shown above. Copy the code shown below. | |
| // Automatically adds the featured image to the top of every post entry, below the title and the post meta data. | |
| add_action('genesis_entry_header', 'single_post_featured_image', 15); | |
| function single_post_featured_image() | |
| { | |
| if (!is_singular('post')) |
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
| /* any element with class that starts with 'tag-link-' ex. 'tag-link-12' */ | |
| *[class^='tag-link-']{ | |
| padding-right: 1%; | |
| } |
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
| $hmac_data = $x_login . "^" . $x_fp_sequence . "^" . $x_fp_timestamp . "^" . $x_amount . "^" . $x_currency_code; | |
| $x_fp_hash = hash_hmac('MD5', $hmac_data, $transaction_key); |
NewerOlder