File "filters.php"

Full Path: /home/cnerdvmd/public_html/test/wp-content/plugins/fluent-smtp/app/Hooks/filters.php
File size: 420 bytes
MIME-type: text/x-php
Charset: utf-8

<?php


add_filter( 'plugin_action_links_' . plugin_basename( FLUENTMAIL_PLUGIN_FILE ), function ($links) {
    $links['settings'] = sprintf(
        '<a href="%s" aria-label="%s">%s</a>',
        admin_url('options-general.php?page=fluent-mail#/connections'),
        esc_attr__( 'Go to Fluent SMTP Settings page', 'fluent-smtp' ),
        esc_html__( 'Settings', 'fluent-smtp' )
    );

    return $links;

}, 10, 1 );