Changeset 3145891
- Timestamp:
- 09/03/2024 11:17:11 AM (18 months ago)
- Location:
- block-specific-spam-woo-orders
- Files:
-
- 2 edited
-
tags/0.77/readme.txt (modified) (4 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
block-specific-spam-woo-orders/tags/0.77/readme.txt
r3145886 r3145891 40 40 **Code Example:** 41 41 42 ```php 42 <pre><code> 43 43 add_filter('BSSO_extra_domains', function () { 44 44 return ['exampledomain.com', 'spamdomain.net']; 45 45 }); 46 ``` 46 </pre></code> 47 47 48 48 #### 2. Blocking Additional First Names … … 52 52 **Code Example:** 53 53 54 ```php 54 <pre><code> 55 55 add_filter('BSSO_extra_names', function () { 56 56 return ['spambot', 'faker']; 57 57 }); 58 ``` 58 </pre></code> 59 59 60 60 ### Complete Example … … 64 64 **Code Example:** 65 65 66 ```php 66 <pre><code> 67 67 add_filter('BSSO_extra_domains', function () { 68 68 return ['exampledomain.com', 'spamdomain.net']; … … 72 72 return ['spambot', 'faker']; 73 73 }); 74 ``` 74 </pre></code> 75 75 76 76 ### Version Compatibility -
block-specific-spam-woo-orders/trunk/readme.txt
r3145886 r3145891 40 40 **Code Example:** 41 41 42 ```php 42 <pre><code> 43 43 add_filter('BSSO_extra_domains', function () { 44 44 return ['exampledomain.com', 'spamdomain.net']; 45 45 }); 46 ``` 46 </pre></code> 47 47 48 48 #### 2. Blocking Additional First Names … … 52 52 **Code Example:** 53 53 54 ```php 54 <pre><code> 55 55 add_filter('BSSO_extra_names', function () { 56 56 return ['spambot', 'faker']; 57 57 }); 58 ``` 58 </pre></code> 59 59 60 60 ### Complete Example … … 64 64 **Code Example:** 65 65 66 ```php 66 <pre><code> 67 67 add_filter('BSSO_extra_domains', function () { 68 68 return ['exampledomain.com', 'spamdomain.net']; … … 72 72 return ['spambot', 'faker']; 73 73 }); 74 ``` 74 </pre></code> 75 75 76 76 ### Version Compatibility
Note: See TracChangeset
for help on using the changeset viewer.