Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

41 строка
1.0 KiB

  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Theme_Compat
  5. * @deprecated 3.0.0
  6. *
  7. * This file is here for backward compatibility with old themes and will be removed in a future version
  8. */
  9. _deprecated_file(
  10. /* translators: %s: template name */
  11. sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
  12. '3.0.0',
  13. null,
  14. /* translators: %s: template name */
  15. sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
  16. );
  17. ?>
  18. <hr />
  19. <div id="footer" role="contentinfo">
  20. <!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
  21. <p>
  22. <?php
  23. printf(
  24. /* translators: 1: blog name, 2: WordPress */
  25. __( '%1$s is proudly powered by %2$s' ),
  26. get_bloginfo('name'),
  27. '<a href="https://wordpress.org/">WordPress</a>'
  28. );
  29. ?>
  30. </p>
  31. </div>
  32. </div>
  33. <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
  34. <?php /* "Just what do you think you're doing Dave?" */ ?>
  35. <?php wp_footer(); ?>
  36. </body>
  37. </html>