Skip to content

Commit

Permalink
📦 NEW: rename the project
Browse files Browse the repository at this point in the history
  • Loading branch information
warengonzaga committed Feb 4, 2021
1 parent 9aab153 commit 472b1fb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Support WP Update Your Footer by using the funding links below
# Support Update Your Footer WP by using the funding links below
# Developed and Maintained by Waren Gonzaga

issuehunt: WarenGonzaga/wp-update-your-footer
issuehunt: WarenGonzaga/update-your-footer-wp
custom: ['https://wrngnz.ga/bmc','https://wrngnz.ga/paypal']

# Your donation means a lot to me to continue the development of open source project like this.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# WP Update Your Footer
# Update Your Footer WP

[![by Waren Gonzaga](https://img.shields.io/badge/by-Waren%20Gonzaga-blue.svg?longCache=true&style=flat-square)](https://bmc.xyz/warengonzaga) ![Version](https://img.shields.io/github/release/WarenGonzaga/wp-update-your-footer.svg?style=flat-square) ![Stars](https://img.shields.io/github/stars/WarenGonzaga/wp-update-your-footer.svg?style=flat-square) ![Size](https://img.shields.io/github/repo-size/warengonzaga/wp-update-your-footer?color=green&style=flat-square)![License](https://img.shields.io/github/license/WarenGonzaga/wp-update-your-footer.svg?style=flat-square)
[![by Waren Gonzaga](https://img.shields.io/badge/by-Waren%20Gonzaga-blue.svg?longCache=true&style=flat-square)](https://bmc.xyz/warengonzaga) ![Version](https://img.shields.io/github/release/WarenGonzaga/update-your-footer-wp.svg?style=flat-square) ![Stars](https://img.shields.io/github/stars/WarenGonzaga/update-your-footer-wp.svg?style=flat-square) ![Size](https://img.shields.io/github/repo-size/warengonzaga/update-your-footer-wp?color=green&style=flat-square)![License](https://img.shields.io/github/license/WarenGonzaga/update-your-footer-wp.svg?style=flat-square)

A WordPress shortcode plugin to automagically update your copyright notice year. Simple and lightweight, no annoying ads and fancy settings. Ready to use just plug and play.

## Installation

To be able to start using this plugin just [download the latest release here](https://github.com/warengonzaga/wp-update-your-footer/releases/latest).
To be able to start using this plugin just [download the latest release here](https://github.com/warengonzaga/update-your-footer-wp/releases/latest).

- Upload the plugin (.zip file) to the /wp-content/plugins/ directory.
- Activate the WP Disease Tracker WordPress plugin through the 'Plugins' menu in WordPress.
- Use the shortcodes from WP Update Your Footer into your site's footer.
- Use the shortcodes from Update Your Footer WP into your site's footer.

## Usage

Expand All @@ -30,7 +30,7 @@ Contributions are welcome, create a pull request to this repo and I will review

## Issues

If you're facing a problem in using WP Update Your Footer please let me know by creating GitHub issue. I'm happy to help you! Don't forget to provide me some screenshot or error logs of it, thank you!
If you're facing a problem in using Update Your Footer WP please let me know by creating GitHub issue. I'm happy to help you! Don't forget to provide me some screenshot or error logs of it, thank you!

## Community

Expand All @@ -40,11 +40,11 @@ Wanna see other projects I made? Join today!

## License

WP Update Your Footer is licensed under [GNU General Public License v3](https://opensource.org/licenses/GPL-3.0).
Update Your Footer WP is licensed under [GNU General Public License v3](https://opensource.org/licenses/GPL-3.0).

## Author

WP Update Your Footer is Developed and Maintained by **[Waren Gonzaga](https://github.com/warengonzaga)**
Update Your Footer WP is Developed and Maintained by **[Waren Gonzaga](https://github.com/warengonzaga)**

[![Facebook](https://img.shields.io/badge/Facebook-%231877F2.svg?&style=flat-square&logo=facebook&logoColor=white)](https://facebook.com/warengonzagaofficial) [![Twitter](https://img.shields.io/badge/Twitter-%231DA1F2.svg?&style=flat-square&logo=twitter&logoColor=white)](https://twitter.com/warengonzaga) [![LinkedIn](https://img.shields.io/badge/LinkedIn-%230077B5.svg?&style=flat-square&logo=linkedin&logoColor=white)](https://linkedin.com/in/warengonzagaofficial) [![YouTube](https://img.shields.io/badge/YouTube-%23FF0000.svg?&style=flat-square&logo=youtube&logoColor=white)](https://youtube.com/warengonzaga) [![DEV](https://img.shields.io/badge/DEV-%23000000.svg?&style=flat-square&logo=dev.to&logoColor=white)](https://dev.to/warengonzaga) [![BMC](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-%23FFDD00.svg?&style=flat-square&logo=buy-me-a-coffee&logoColor=black)](https://dev.to/warengonzaga)

Expand Down
6 changes: 3 additions & 3 deletions wp-update-your-footer.php → update-your-footer-wp.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
/**
* Plugin Name: WP Update Your Footer
* Plugin Name: Update Your Footer WP
* Plugin URI: https://warengonzaga.com/wp-update-your-footer
* Description: A WordPress shortcode plugin to automagically update your copyright notice year. Simple and lightweight, no annoying ads and fancy settings.
* Version: 1.0.1
* Version: 1.1.0
* Author: Waren Gonzaga
* Author URI: https://warengonzaga.com
*/
Expand All @@ -18,7 +18,7 @@
function update_your_footer($atts) {
$copyright = 'Copyright &copy;';
$year = date('Y');
$sitename = get_bloginfo('name');
$sitename = '<a href="'. get_bloginfo('url') . '" target="_blank">' . get_bloginfo('name') . '</a>';
$all_rights_reserved = 'All Rights Reserved';
$notice = $copyright . ' ' . $year . ' ' . $sitename . ', ' . $all_rights_reserved . '.';

Expand Down

0 comments on commit 472b1fb

Please sign in to comment.