Footer Credits

چۈشەندۈرۈش

This plugin only works with themes that have added support.

Footer Credits provides a standardized method for making theme credits editable. It registers a new section and fields in the Customizer for modifying the credits and choosing how they appear.

Theme authors, let your users and customers know your theme supports the Footer Credits plugin.

If your theme doesn’t work with Footer Credits, ask the developer to add support. Instructions can be find in the Other Notes section.

Additional Resources

Notes

If you’re a theme author and want to add support, all you need to do is pass the default credits string through a footer_credits filter.

1. Create a template tag with the default credits and filter:

<?php
if ( ! function_exists( 'themename_credits' ) ) :
/**
 * Theme credits text.
 */
function themename_credits() {
    $text = sprintf( __( '%s by Cedaro.', 'themename' ),
        '<a href="https://www.cedaro.com/wordpress/themes/hyalite/">Hyalite</a>'
    );

    echo apply_filters( 'footer_credits', $text );
}
endif;

2. Then call the template tag somewhere in the footer of the theme:

<footer class="site-footer">
    <div class="credits">
        <?php themename_credits(); ?>
    </div>
</footer>

ئېكران كەسمىسى

  • The Customizer section and fields.

ئورنىتىش

Install like most other plugins. Check out the codex if you have any questions.

Usage

After installing:

  1. Go to Appearance → Customize in your admin panel
  2. Open the Credits section
  3. Add some text to the Credits text area
  4. Choose whether your custom text appears before, after, or replaces the default credits.

Tip: Insert {{year}} in your text to have the year update automatically.

باھالاشلار

2017-يىلى 12-ئاپرېل
I've read the one star reviews, and they're likely trying to use the plugin on an unsupported theme. Your theme's developer must offer support, but once they do, it does exactly what it says on the tin!
6 باھالاشنىڭ ھەممىنى ئوقۇش

تۆھپىكار ۋە ئىجادكار

«Footer Credits» كودى ئوچۇق يۇمشاق دېتال. تۆۋەندىكى كىشىلەر بۇ قىستۇرمىغا تۆھپە قوشقان.

تۆھپىكار

«Footer Credits» نى تىلىڭىزغا تەرجىمە قىلىڭ

ئىجادىيەتكە قىزىقامسىز؟

كودقا كۆز يۈگۈرتۈپ، SVN خەزىنە تەكشۈرۈپ ياكى RSSئارقىلىق ئىجادىيەت خاتىرىسىگە مۇشتەرى بولغىلى بولىدۇ.

ئۆزگىرىش خاتىرىسى

1.1.0 – December 2, 2016

  • Removed the call to load_plugin_textdomain() in favor of just-in-time text domain loading available since WordPress 4.6.
  • Updated URLs to https where possible.

1.0.0

  • Initial release.