Changeset 2499019
- Timestamp:
- 03/18/2021 10:15:55 PM (5 years ago)
- Location:
- the-insertr
- Files:
-
- 2 edited
-
tags/1.4.1/readme.txt (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
the-insertr/tags/1.4.1/readme.txt
r2232829 r2499019 1 1 === The Insertr === 2 Contributors: b3none 2 Contributors: b3none, garethmorgans 3 3 Donate link: https://herdl.com/ 4 Tags: keyword, ppc, dynamic keyword inserter, herdl4 Tags: keyword, dynamic keyword insertion, dynamic insertion, ads, ad manager, google ads, keyword insertion, DKI, PPC, SEO 5 5 Requires at least: 2.9 6 Tested up to: 5. 27 Stable tag: 5. 26 Tested up to: 5.7 7 Stable tag: 5.7 8 8 Requires PHP: 7.0.0 9 9 License: MIT 10 10 License URI: https://github.com/herdl/the-insertr/blob/master/LICENSE.md 11 11 12 Word press dynamic keyword insertion plugin.12 WordPress dynamic keyword insertion plugin. 13 13 14 14 == Description == 15 15 16 The Herdl dynamic keyword insertion plugin, The Insertr, dynamically inserts a keyword onto your page using a simple URL query string to determine the keyword and a shortcode for placement.16 The Insertr allows marketers and site owners to dynamically insert words and phrases into landing pages. Control your parameters using a shortcode and simple query string in the page URL. 17 17 18 The placement of the word or phrase is determined by the location of the short code. In the case where a word is not specified a fallback Keyword or phrase is placed instead. 18 A fallback can be entered for cases where the URL does not contain the expected query string. Options are available for uppercase, lowercase and title case text. 19 20 Shortcode not working? We’ve also created a plugin called “Shortcode Enablr” to enable shortcodes in common places that WordPress doesn’t display them by default - including ACF fields and YoastSEO titles. 19 21 20 22 == Installation == … … 26 28 == Usage == 27 29 28 Short code to be used: [insertr key=”{desiredword}” fallback=”{fallback}”] where ‘desiredword’ is the word to be placed, and ‘fallback’ is the word to appear if no keyword is specified. 30 Add the following shortcode where you wish to insert a dynamic word or phrase: 29 31 30 For the Keyword to be placed on your page, you must also add the following parameter to your URL: ?keyword={example} Where ‘example’ is the word you want to placed. 32 [insertr key=”{urlParameter}” fallback=”{fallbackWord}”] 31 33 32 If your URL already has parameters (E.g – there is already a ? in the URL) add &keyword={keyword} to the end of the string. 34 In the shortcode, the “key” option contains the URL parameter you’d like to use. 35 36 The “fallback” option contains the fallback word to be displayed if the URL does not contain a query string using the URL parameter you’ve defined. 37 38 For example: 39 40 We’ll set the URL parameter to be “keyword” which we’ll assign a value for in the URL. Our fallback word will be “PPC Agency” if the correct query string isn’t used. 41 42 [insertr key=”keyword” fallback=”PPC Agency”] 43 44 Our link for the page will use a query string with the parameter set above, “keyword”, and the value we’d like to use - in this case we want to dynamically insert “digital agency”. 45 46 herdl.com?keyword=digital%20agency 47 48 When this URL is used to visit our landing page, all instances of the shortcode will display “digital agency”. If the query string is not used, all instances of the shortcode will display “ppc agency”. 49 50 For reference, “%20” is the URL encoded value for a space. 51 52 == Usage == 53 54 You can use multiple shortcodes on the page to dynamically insert different words and phrases. This will require you to use multiple query parameters that are separated by an ampersand, "&", as shown below. 55 56 For example: 57 58 [insertr key=”keyword” fallback=”PPC Agency”] 59 60 [insertr key=”other” fallback=”PPC Management”] 61 62 herdl.com?keyword=digital%20agency&other=digital%20experts 63 64 In the example above, the first shortcode will display “digital agency” and the second shortcode will display “digital experts”. 65 66 You can also set the letter case using an additional option in the shortcode for uppercase, lowercase and title case. This will determine the letter case of the dynamically inserted words and also the fallback words. 67 68 For example: 69 70 [insertr key=”keyword” fallback=”PPC Agency” case=”upper”] 71 72 herdl.com?keyword=digital%20agency 73 74 This would display the inserted words in uppercase: 75 “DIGITAL AGENCY” 76 77 [insertr key=”keyword” fallback=”PPC Agency” case=”lower”] 78 79 herdl.com?keyword=digital%20agency 80 81 This would display the inserted words in lowercase: 82 “digital agency” 83 84 [insertr key=”keyword” fallback=”PPC Agency” case=”title”] 85 86 herdl.com?keyword=digital%20agency 87 88 This would display the inserted words in title case: 89 90 “Digital Agency” 33 91 34 92 == Frequently Asked Questions == … … 47 105 48 106 = 1.2.0 = 49 * Add ability to use short codes on ACF and YoastSEO107 * Add ability to use shortcodes on ACF and Yoast SEO 50 108 51 109 = 1.1.0 = -
the-insertr/trunk/readme.txt
r2211672 r2499019 1 1 === The Insertr === 2 Contributors: b3none 2 Contributors: b3none, garethmorgans 3 3 Donate link: https://herdl.com/ 4 Tags: keyword, ppc, dynamic keyword inserter, herdl4 Tags: keyword, dynamic keyword insertion, dynamic insertion, ads, ad manager, google ads, keyword insertion, DKI, PPC, SEO 5 5 Requires at least: 2.9 6 Tested up to: 5. 27 Stable tag: 5. 26 Tested up to: 5.7 7 Stable tag: 5.7 8 8 Requires PHP: 7.0.0 9 9 License: MIT 10 10 License URI: https://github.com/herdl/the-insertr/blob/master/LICENSE.md 11 11 12 Word press dynamic keyword insertion plugin.12 WordPress dynamic keyword insertion plugin. 13 13 14 14 == Description == 15 15 16 The Herdl dynamic keyword insertion plugin, The Insertr, dynamically inserts a keyword onto your page using a simple URL query string to determine the keyword and a shortcode for placement.16 The Insertr allows marketers and site owners to dynamically insert words and phrases into landing pages. Control your parameters using a shortcode and simple query string in the page URL. 17 17 18 The placement of the word or phrase is determined by the location of the short code. In the case where a word is not specified a fallback Keyword or phrase is placed instead. 18 A fallback can be entered for cases where the URL does not contain the expected query string. Options are available for uppercase, lowercase and title case text. 19 20 Shortcode not working? We’ve also created a plugin called “Shortcode Enablr” to enable shortcodes in common places that WordPress doesn’t display them by default - including ACF fields and YoastSEO titles. 19 21 20 22 == Installation == … … 26 28 == Usage == 27 29 28 Short code to be used: [insertr key=”{desiredword}” fallback=”{fallback}”] where ‘desiredword’ is the word to be placed, and ‘fallback’ is the word to appear if no keyword is specified. 30 Add the following shortcode where you wish to insert a dynamic word or phrase: 29 31 30 For the Keyword to be placed on your page, you must also add the following parameter to your URL: ?keyword={example} Where ‘example’ is the word you want to placed. 32 [insertr key=”{urlParameter}” fallback=”{fallbackWord}”] 31 33 32 If your URL already has parameters (E.g – there is already a ? in the URL) add &keyword={keyword} to the end of the string. 34 In the shortcode, the “key” option contains the URL parameter you’d like to use. 35 36 The “fallback” option contains the fallback word to be displayed if the URL does not contain a query string using the URL parameter you’ve defined. 37 38 For example: 39 40 We’ll set the URL parameter to be “keyword” which we’ll assign a value for in the URL. Our fallback word will be “PPC Agency” if the correct query string isn’t used. 41 42 [insertr key=”keyword” fallback=”PPC Agency”] 43 44 Our link for the page will use a query string with the parameter set above, “keyword”, and the value we’d like to use - in this case we want to dynamically insert “digital agency”. 45 46 herdl.com?keyword=digital%20agency 47 48 When this URL is used to visit our landing page, all instances of the shortcode will display “digital agency”. If the query string is not used, all instances of the shortcode will display “ppc agency”. 49 50 For reference, “%20” is the URL encoded value for a space. 51 52 == Usage == 53 54 You can use multiple shortcodes on the page to dynamically insert different words and phrases. This will require you to use multiple query parameters that are separated by an ampersand, "&", as shown below. 55 56 For example: 57 58 [insertr key=”keyword” fallback=”PPC Agency”] 59 60 [insertr key=”other” fallback=”PPC Management”] 61 62 herdl.com?keyword=digital%20agency&other=digital%20experts 63 64 In the example above, the first shortcode will display “digital agency” and the second shortcode will display “digital experts”. 65 66 You can also set the letter case using an additional option in the shortcode for uppercase, lowercase and title case. This will determine the letter case of the dynamically inserted words and also the fallback words. 67 68 For example: 69 70 [insertr key=”keyword” fallback=”PPC Agency” case=”upper”] 71 72 herdl.com?keyword=digital%20agency 73 74 This would display the inserted words in uppercase: 75 “DIGITAL AGENCY” 76 77 [insertr key=”keyword” fallback=”PPC Agency” case=”lower”] 78 79 herdl.com?keyword=digital%20agency 80 81 This would display the inserted words in lowercase: 82 “digital agency” 83 84 [insertr key=”keyword” fallback=”PPC Agency” case=”title”] 85 86 herdl.com?keyword=digital%20agency 87 88 This would display the inserted words in title case: 89 90 “Digital Agency” 33 91 34 92 == Frequently Asked Questions == … … 47 105 48 106 = 1.2.0 = 49 * Add ability to use short codes on ACF and YoastSEO107 * Add ability to use shortcodes on ACF and Yoast SEO 50 108 51 109 = 1.1.0 =
Note: See TracChangeset
for help on using the changeset viewer.