Title: php 7.2 support
Last modified: June 1, 2018

---

# php 7.2 support

 *  Resolved [Scott Farrell](https://wordpress.org/support/users/sfarrell5123/)
 * (@sfarrell5123)
 * [8 years ago](https://wordpress.org/support/topic/php-7-2-support-3/)
 * wp-content/plugins/wp-awesome-faq/index.php +233
 *     ```
       $links[] = 
   
       needs to be
   
       $links = array( '<a href="'.WP_AWESOME_FAQ_PRO_URL.'" target="_blank" rel="noopener noreferrer">'._x('Upgrade', 'Plugin action link label.', 'jeweltheme').'</a>');
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Liton Arefin](https://wordpress.org/support/users/litonice13/)
 * (@litonice13)
 * [8 years ago](https://wordpress.org/support/topic/php-7-2-support-3/#post-10348354)
 * Fixed and updated.
 *  [AZ](https://wordpress.org/support/users/axenaqvi/)
 * (@axenaqvi)
 * [8 years ago](https://wordpress.org/support/topic/php-7-2-support-3/#post-10364880)
 * Wrong fix in the new release. Line 233 should not be:
 * `$links[] = '<a href="'.WP_AWESOME_FAQ_PRO_URL.'" style="color:#fff; padding:
   3px 10px; background: red;" target="_blank">'. array(". _x('Upgrade', 'Plugin
   action link label.', 'jeweltheme') ").'</a>';`
 * but:
 * `$links = array('<a href="'.WP_AWESOME_FAQ_PRO_URL.'" style="color:#fff; padding:
   3px 10px; background: red;" target="_blank">'. _x('Upgrade', 'Plugin action link
   label.', 'jeweltheme') .'</a>');`
 * Please check and update.
 * Best Regards
 *  [AZ](https://wordpress.org/support/users/axenaqvi/)
 * (@axenaqvi)
 * [8 years ago](https://wordpress.org/support/topic/php-7-2-support-3/#post-10364891)
 * In fact it should simply be:
 * `$links[] = '<a href="'.WP_AWESOME_FAQ_PRO_URL.'" style="color:#fff; padding:
   3px 10px; background: red;" target="_blank">'. _x('Upgrade', 'Plugin action link
   label.', 'jeweltheme') .'</a>';`
 * In order to keep other links as well.
 * Regards

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘php 7.2 support’ is closed to new replies.

 * ![](https://ps.w.org/wp-awesome-faq/assets/icon-256x256.png?rev=2323698)
 * [Master Accordion ( Former WP Awesome FAQ Plugin )](https://wordpress.org/plugins/wp-awesome-faq/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-awesome-faq/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-awesome-faq/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-awesome-faq/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-awesome-faq/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-awesome-faq/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [AZ](https://wordpress.org/support/users/axenaqvi/)
 * Last activity: [8 years ago](https://wordpress.org/support/topic/php-7-2-support-3/#post-10364891)
 * Status: resolved