Changeset 3469135
- Timestamp:
- 02/25/2026 07:49:45 AM (5 weeks ago)
- Location:
- siteseo/trunk
- Files:
-
- 4 edited
-
assets/css/siteseo.css (modified) (1 diff)
-
main/settings/titles.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
siteseo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
siteseo/trunk/assets/css/siteseo.css
r3427194 r3469135 2199 2199 } 2200 2200 } 2201 2202 .siteseo-pro-tag{ 2203 position:relative; 2204 display:inline-block; 2205 margin-left: 10px; 2206 padding: 3px; 2207 border-radius: 3px; 2208 background-color: gold; 2209 font-weight: 500; 2210 color: #212529de; 2211 font-size: 1.0rem; 2212 line-height: 1.1rem; 2213 } 2214 2215 .siteseo-pro-tag::before{ 2216 content: ''; 2217 display: inline-block; 2218 position: absolute; 2219 background: rgba(255, 255, 255, 0.5); 2220 width: 10px; 2221 height: 100%; 2222 top: 0; 2223 left:0; 2224 filter:blur(3px); 2225 transform: skewX(-15deg); 2226 animation: siteseo-shine 2s ease-in-out infinite; 2227 } 2228 2229 @keyframes siteseo-shine{ 2230 0% { 2231 opacity: 0.5; 2232 left: 60px; 2233 transition-property: opacity, left; 2234 }, 2235 100% { 2236 opacity: 0.6; 2237 left: 50px; 2238 transition-property: opacity, left; 2239 } 2240 } -
siteseo/trunk/main/settings/titles.php
r3387094 r3469135 328 328 $option_404_title = !empty($options['titles_archives_404_title']) ? $options['titles_archives_404_title'] : ''; 329 329 $option_404_desc = !empty($options['titles_archives_404_desc']) ? $options['titles_archives_404_desc'] : ''; 330 330 $author_base_url = !empty($options['author_base_url']) ? $options['author_base_url'] : 'author'; 331 331 332 $archives_fields = [ 332 333 'author-archives' => 'Author archives', … … 396 397 </label> 397 398 </div> 398 <span class="line"><span> 399 400 <div class="siteseo_wrap_label"><p style="font-weight: 500;">'.esc_html__('Author base', 'siteseo'); 401 if(!defined('SITESEO_PRO_VERSION')){ 402 echo'<span class="siteseo-pro-tag">Pro</span>'; 403 } 404 405 echo'</p></div> 406 <input type="text" name="siteseo_options[author_base]" value="' . esc_attr($author_base_url) . '" ' .(!defined('SITESEO_PRO_VERSION') ? 'disabled="disabled" style="cursor:not-allowed;"' : '').'> 407 <div class="siteseo_wrap_label"><p>'.esc_html__('Change the /author/ slug used in author archive URLs.', 'siteseo').'</p> 408 399 409 </div> 400 410 … … 860 870 } 861 871 872 $options = apply_filters('siteseo_titles_save_settings', $options); 873 862 874 update_option('siteseo_titles_option_name', $options); 863 875 } -
siteseo/trunk/readme.txt
r3427194 r3469135 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.2 7 Stable tag: 1.3. 57 Stable tag: 1.3.6 8 8 License: GPLv2 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 123 123 == Changelog == 124 124 125 = 1.3.6 (February 25, 2026) = 126 127 * [Pro-Feature] Introduced the SEO Alert feature. 128 * [Pro-Feature] Added support for custom Author base. 129 * [Pro-Feature] Introduced Podcast feature. 130 * [Bug Fix] Fixed an issue in the Local Business schema. 131 125 132 = 1.3.5 (December 25, 2025) = 126 133 * [Pro-Feature] Added a Schema importer, user can now import schema from URL, HTML, or JSON. -
siteseo/trunk/siteseo.php
r3427194 r3469135 5 5 Description: SiteSEO is an easy, fast and powerful SEO plugin for WordPress. Unlock your Website's potential and Maximize your online visibility with our SiteSEO! 6 6 Author: Softaculous 7 Version: 1.3. 57 Version: 1.3.6 8 8 Requires at least: 5.0 9 9 Author URI: https://siteseo.io/ … … 25 25 } 26 26 27 define('SITESEO_VERSION', '1.3. 5');27 define('SITESEO_VERSION', '1.3.6'); 28 28 define('SITESEO_FILE', __FILE__); 29 29 define('SITESEO_DOCS', 'https://siteseo.io/docs/');
Note: See TracChangeset
for help on using the changeset viewer.