Title: x2764tech's Replies | WordPress.org

---

# x2764tech

  [  ](https://wordpress.org/support/users/x2764tech/)

 *   [Profile](https://wordpress.org/support/users/x2764tech/)
 *   [Topics Started](https://wordpress.org/support/users/x2764tech/topics/)
 *   [Replies Created](https://wordpress.org/support/users/x2764tech/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/x2764tech/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/x2764tech/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/x2764tech/engagements/)
 *   [Favorites](https://wordpress.org/support/users/x2764tech/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy WP SMTP – WordPress SMTP and Email Logs: Gmail SMTP, Office 365, Outlook, Custom SMTP, and more] What version of TLS is used?](https://wordpress.org/support/topic/what-version-of-tls-is-used/)
 *  [x2764tech](https://wordpress.org/support/users/x2764tech/)
 * (@x2764tech)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/what-version-of-tls-is-used/#post-10243440)
 * It doesn’t – it delegates the actual task of sending emails to PHPMailer from
   the WordPress installed, which [seems to try TLS v1.0, v1.1, or v1.2](https://github.com/PHPMailer/PHPMailer/blob/5.2-stable/class.smtp.php#L360)(
   on the 5.2 legacy branch which is included in WordPress) – using php’s [stream_socket_enable_crypto](https://secure.php.net/manual/en/function.stream-socket-enable-crypto.php)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contextual Related Posts] Automatically use secondary image, not featured](https://wordpress.org/support/topic/automatically-use-secondary-image-not-featured/)
 *  [x2764tech](https://wordpress.org/support/users/x2764tech/)
 * (@x2764tech)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/automatically-use-secondary-image-not-featured/#post-6532025)
 * If you don’t store the url in a meta field – for example, if you use the MultiPostThumbnails
   which stores the attachment ID in a meta field – you can use the `crp_thumb_url`
   filter, eg:
 *     ```
       function my_filter_crp_thumbnail_url($url, $width, $height, $post) {
           //return a custom url or $url
       }
       add_filter('crp_thumb_url', 'my_filter_crp_thumbnail', 10, 4);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Author Image] WordPress 4.3 deprecated notice](https://wordpress.org/support/topic/wordpress-43-deprecated-notice/)
 *  [x2764tech](https://wordpress.org/support/users/x2764tech/)
 * (@x2764tech)
 * [11 years ago](https://wordpress.org/support/topic/wordpress-43-deprecated-notice/#post-6449888)
 * If you use wp-cli, this is a real pain, so I’ve changed:
 * `$this->WP_Widget('author_image', __('Author Image', 'sem-author-image'), $widget_ops)`
 * to
 * `parent::__construct('author_image', __('Author Image', 'sem-author-image'), 
   $widget_ops)`
 * in the constructor of the author_image widget (I’m giving no futher information
   as I strongly discourage you from editing the source code of plugins unless you
   know what you’re doing)

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