ExpertTexting Official Wordpress Plugin
by experttextingintegrations 5 (1 reviews)

ExpertTexting Official Wordpress Plugin

ExpertTexting official plugin for WordPress. Send notifications, alerts, and personalized messages using ExpertTexting's API.

ExpertTexting Official Wordpress Plugin ranks #39,956 among WordPress.org plugins with 10+ active installations, is #1,203 of 3,382 in the Communication category, a 5/5 rating from 1 reviews, and was last updated Dec 1, 2021. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 5.8 (Current: 7.1.2)
v1.2.0 Current Version v1.2.0
Updated 4 years ago Last Update on 01 Dec, 2021
Refreshed 8 hours ago Last Refreshed on
#1,203 of 3,382 in Communication Top 50% by installs No update in over a year
View on WordPress.org
Rank
#39,956
No change
Active Installs
10+
No change
KW Avg Position
N/A
No change
Downloads
1.2K
+2 today
Support Resolved
0%
No change
Rating
100%
Review 5 out of 5
5 (1 reviews)

Next Milestone 20

Total Progress 20%
10+ 20+
26,694
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 8 more installs to reach 20+

Rank Changes

34,234 37,575 40,915 44,255 47,596 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
32,396 36,292 40,189 44,085 47,981 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #39,956
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

5.0
1 reviews
Overall 100%
5
1 (100%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about ExpertTexting Official Wordpress Plugin

Yes! ExpertTexting Plugin is compatible with PHP version 8.0+
No! Not right now but we will add support of REST API in future versions.
You can check the use and details of Functions in ExpertTexting Plugin. After install plugin, go to "Hooks & Functions" Page expt_send_sms() Run the below function to send SMS through PHP $to = array("10000000001","10000000002"); $msg = "This is your message"; expt_send_sms( $to, $msg );
You can check the use and details of Action Hooks in ExpertTexting Plugin. After install plugin, go to "Hooks & Functions" Page expttxt_send_message Run the action when sending SMS with this plugin. Example: Send mail when send SMS. Parameters: Recipient number: $recipient Sent message: $message function send_mail_when_send_sms( $recipient, $message ) { $mail = "Recipient is " . $recipient . " And Message is " . $message; wp_mail('you@mail.com', 'Send SMS', $mail); } add_action('expttxt_send_message', 'send_mail_when_send_sms'); expttxt_add_subscriber Run the action when a new user is added or subscribes. Example: Send mail when adding subscriber. Parameters: Subscriber name: $name Subscriber mobile number: $mobile function send_mail_when_add_subcriber( $name, $mobile ) { $mail = "Subscriber name is " . $name . " And Mobile number is " . $mobile; wp_mail('you@mail.com', 'Adding Subscriber', $mail); } add_action('expttxt_add_subscriber', 'send_mail_when_add_subcriber'); expttxt_add_group Run the action when a group is added. Example: Send mail when adding group. Parameters: Group name: $group_name function send_mail_when_add_group( $group_name ) { $mail = "New Group name " . $group_name . " is added."; wp_mail('you@mail.com', 'Adding Group', $mail); } add_action('expttxt_add_group', 'send_mail_when_add_group'); expttxt_update_subscriber Run the action when updating the subscriber. Example: Send mail when updating the subscriber. Parameters: Subscriber (array): $subscriber function send_mail_when_update_subscriber( $subscriber ) { $mail = "Subscriber name " . $subscriber['name'] . " is updated."; wp_mail('you@mail.com', 'Update Subscriber', $mail); } add_action('expttxt_update_subscriber', 'send_mail_when_update_subscriber'); expttxt_update_group Run the action when updating Group. Example: Send mail when updating group. Parameters: Group name: $group_name Group ID: $id function send_mail_when_update_group( $group_name, $id ) { $mail = "Group name " . $group_name . " is updated."; wp_mail('you@mail.com', 'Update Group', $mail); } add_action('expttxt_update_group', 'send_mail_when_update_group');
You can check the use and details of Filter Hooks in ExpertTexting Plugin. After install plugin, go to "Hooks & Functions" Page expttxt_from Use the filter to modify the sender's number before sending a message. Example: Change default sender to 'ExpertTexting'. Parameters: Sender id/number: $from function modify_expt_sender( $from ) { $from = 'ExpertTexting'; return $from; } add_filter('expttxt_from', 'modify_expt_sender'); expttxt_to Use the filter to modify recipient numbers before sending a message. Example: Add a new recipient number to send the message. Parameters: Recipients' numbers (array): $to function modify_expt_recipient( $to ) { $to[] = '18455xxxxx'; return $to; } add_filter('expttxt_to', 'modify_expt_recipient'); expttxt_msgtext Use the filter to modify text message before sending a message. Example: Include signatures in sent messages. Parameters: Text message: $txtMsg function modify_expt_textmsg( $txtMsg ) { $txtMsg = $txtMsg . ' Powered by ExpertTexting'; return $txtMsg; } add_filter('expttxt_msgtext', 'modify_expt_textmsg'); expttxt_resend_update_prev_values Use the filter to enable to update the previous entry when resend message. Example: To enable, set the value to TRUE. Parameters: Enable/Disable: $set function modify_expt_update_previous_entry( $set ) { $set = true; return $set; } add_filter('expttxt_resend_update_prev_values', 'modify_expt_update_previous_entry'); expttxt_main_menu Use the filter to add a submenu page to ExpertTexting menu. Example: Adding a submenu page to ExpertTexting menu. Parameters: Enable/Disable: $subpages function add_expt_main_menu( $subpages ) { $subpages[] = array( 'parent_slug' => 'et_menu', 'page_title' => 'New Page Title', 'menu_title' => 'New Page', 'capability' => 'manage_options', 'menu_slug' => 'my_new_page', 'callback' => 'new_page_callback', ); return $subpages; } add_filter('expttxt_main_menu', 'add_expt_main_menu'); function new_page_callback() { echo '<div class="wrap">'; echo '<h2>Submenu New Page Title</h2>'; echo '</div>'; }

Sign In / Register

You need to sign in or register to use this feature.