Changeset 2919363
- Timestamp:
- 05/31/2023 12:31:27 AM (3 years ago)
- Location:
- redirect-editor/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
redirect-editor.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
redirect-editor/trunk/readme.txt
r2918745 r2919363 3 3 website link: https://planetzuda.com 4 4 security-flaw:security@planetzuda.com 5 Tags: SEO, xml sitemap, content analysis 5 Tags: SEO, xml sitemap, content analysis,ADA, image optimization, image seo, alt tag seo, alt seo, ADA SEO 6 6 Requires at least: 3.0 7 7 Tested up to: 6.2.2 … … 50 50 It adds in some protection from certain SEO software that has flaws which we patched. 51 51 == Screenshots == 52 == 3.1.5 == 53 Added in automated image optimization, to try and put the title of your post or the title of your caption to be visible to the blind and deaf community, who use screen readers while also attempting to optimize your SEO. We only do this if your alt tag is blank, it's of high importance that you fill out your own alt tags, this is last resort. 54 == 3.1.4 == 55 added in custom titles for posts and pages, seo description and keywords. 52 56 == 3.1.3 == 53 57 Best possible security for the plugin in case your site admin is hacked -
redirect-editor/trunk/redirect-editor.php
r2918745 r2919363 3 3 /* 4 4 Plugin Name: SEO & Redirect 5 Version: 3.1. 45 Version: 3.1.5 6 6 Plugin URI: https://planetzuda.com 7 Description: Unlock the full potential of your website with our cutting-edge SEO optimization services. We understand that in the digital landscape,SEO is king, and content is queen. That's why we offer a comprehensive range of solutions to help you maximize your online visibility and drive targeted traffic to your website. From redirecting links to avoid 404 error pages to creating unique SEO-optimized links, our services are designed to enhance your website's performance and attract the attention of search engines. With our expertise, you can take your SEO strategy to new heights and stay ahead of the competition.8 9 Tired of losing potential customers due to broken links? Our link redirection feature ensures that every visitor lands on the right page, eliminating frustrating 404 error pages. By seamlessly redirecting links, we enhance the user experience andkeep visitors engaged with your content. Plus, search engines love websites that are well-maintained and error-free, which can boost your search engine rankings. With our service, you can ensure that your website provides a seamless browsing experience, leading to higher customer satisfaction and increased conversions.7 Description: SEO is king, and content is queen. That's why we offer a comprehensive range of solutions to help you maximize your online visibility and drive targeted traffic to your website. From redirecting links to avoid 404 error pages to creating unique SEO-optimized links, our services are designed to enhance your website's performance and attract the attention of search engines. With our expertise, you can take your SEO strategy to new heights and stay ahead of the competition. 8 9 Tired of losing potential customers due to broken links? Our link redirection feature ensures that every visitor lands on the right page, eliminating frustrating 404 error pages. By seamlessly redirecting links, we enhance the user experience by adding in text tags for images taken from your caption or post automatically, which is an attempt in automation to comply with the ADA, which a lot of sites legally have to comply with, however the best way to comply is to fill in the alt tag yourself. We keep visitors engaged with your content. Plus, search engines love websites that are well-maintained and error-free, which can boost your search engine rankings. With our service, you can ensure that your website provides a seamless browsing experience, leading to higher customer satisfaction and increased conversions. 10 10 11 11 Don't let your website get lost in the vast ocean of online content. Our unique and SEO-optimized links are designed to make your website stand out from the crowd. We carefully craft keyword-rich links that align with your target audience's search queries, helping search engines recognize the relevance and authority of your pages. By leveraging our link optimization techniques, you can significantly improve your search engine visibility, attract organic traffic, and drive qualified leads to your website. Stay one step ahead of your competitors with our powerful link optimization solutions. 12 12 13 Enhancing your website's SEO goes beyond just optimizing links. With our service, you can take control of your website's metadata and make it more appealing to search engines. Add descriptions, keywords, and custom titles to your web pages, effectively communicating their content and purpose to search engines. By strategically incorporating relevant keywords, you can increase your chances of ranking higher in search results, attracting more organic traffic, and reaching your target audience. Additionally, our XML sitemap creation feature ensures that search engines can efficiently crawl and index your website, further boosting your online visibility and driving sustained organic traffic.14 15 Experience the difference our comprehensive SEO optimization services can make for your website. From redirecting links to crafting unique SEO-optimized content, we have the tools and expertise to propel your online presence to new heights. Don't let your competitors steal the spotlight—join us and let your website shine in the vast digital landscape. Contact us today to get started on your journey to SEO success. 13 Enhancing your website's SEO goes beyond just optimizing links. With our service, you can take control of your website's metadata and make it more appealing to search engines. Add descriptions, keywords, and custom titles to your web pages, effectively communicating their content and purpose to search engines. Additionally, we automatically optimize your image alt tags by grabbing the caption or using the post title if the alt tag is empty. By strategically incorporating relevant keywords in alt tags, you can increase your chances of ranking higher in search results, attracting more organic traffic, and reaching your target audience. Our XML sitemap creation feature ensures that search engines can efficiently crawl and index your website, further boosting your online visibility and driving sustained organic traffic. 14 15 Experience the difference our comprehensive SEO optimization services can make for your website. From redirecting links to crafting unique SEO-optimized content, we have the tools and expertise to propel your online presence to new heights. Don't let your competitors steal the spotlight—join us and let your website shine in the vast digital landscape. Contact us today to get started on your journey to SEO success. 16 16 Author: Planet Zuda 17 17 Author URI: https://planetzuda.com … … 642 642 echo $unique_slug; // Output: "example-post-slug-2" (if the initial slug exists) 643 643 644 645 class ImageAltTagOptimization { 646 public function __construct() { 647 add_filter('wp_get_attachment_image_attributes', array($this, 'optimize_image_alt_tags'), 10, 2); 648 } 649 650 public function optimize_image_alt_tags($attr, $attachment) { 651 // Get the image caption 652 $caption = get_post_field('post_excerpt', $attachment->ID); 653 654 // Check if a caption exists 655 if ($caption) { 656 // Use the caption for alt text 657 $alt_text = $caption; 658 } else { 659 // Fallback to the post title 660 $alt_text = get_the_title($attachment->post_parent); 661 } 662 663 // Update the alt attribute 664 $attr['alt'] = $alt_text; 665 666 return $attr; 667 } 668 } 669 670 $image_alt_tag_optimization = new ImageAltTagOptimization(); 671 644 672 ?>
Note: See TracChangeset
for help on using the changeset viewer.