mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-23 03:23:42 +03:00
22 lines
388 B
PHP
22 lines
388 B
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* The template for displaying the footer.
|
||
|
*
|
||
|
* Contains the closing of the #content div and all content after.
|
||
|
*
|
||
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
||
|
*
|
||
|
* @package WordPressdotorg\Theme
|
||
|
*/
|
||
|
|
||
|
?>
|
||
|
|
||
|
<div id="wporg-footer">
|
||
|
<h6 class="aligncenter cip-image">Code is Poetry.</h6>
|
||
|
</div>
|
||
|
|
||
|
<?php wp_footer(); ?>
|
||
|
|
||
|
</body>
|
||
|
</html>
|