This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php edit_post_link( __( 'Edit Post', 'abdo' ), '<span class="edit-link">', '</span>' ); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Post time "9:20 am" --> | |
<?php the_time( 'g:i a' ); ?> | |
<!-- Displays the time in the date format ‘F j, Y’ (ex: May 16, 2021) --> | |
<?php the_time('F j, Y'); ?> | |
<!-- Ex: May 16, 2021 --> | |
<?php echo get_the_date( 'j F, Y' ); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php bloginfo('name'); ?> - Site title | |
<?php bloginfo('description'); ?> - Site description | |
<?php bloginfo('url'); ?> - Site Home URL | |
<?php bloginfo('rss2_url'); ?> - RSS URL | |
<?php bloginfo('template_url'); ?> - Theme URL | |
<?php bloginfo('template_directory'); ?> - Theme directory | |
<?php bloginfo('pingback_url'); ?> - Pingback URL | |
<?php bloginfo('stylesheet_url'); ?> - Style file URL | |
<?php bloginfo('wpurl'); ?> - Site URL | |
<?php include TEMPLATEPATH . '/searchform.php'; ?> - Include Search Form |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Support Menus | |
if ( function_exists( 'register_nav_menus' ) ) { | |
register_nav_menus( | |
array( | |
'menu_main' => 'Main Menu', | |
'mobile_menu' => 'Mobile Menu', | |
'footer_menu' => 'Footer Menu', | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html <?php language_attributes(); ?>> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> | |
<title><?php if(is_front_page() || is_home()){ echo get_bloginfo('name') . ' | ' . get_bloginfo( 'description' ); } else { wp_title(''); echo ' | '; bloginfo( 'name' ); }?></title> | |
<link rel="pingback" href="<?php bloginfo('pingback url'); ?>" /> | |
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> | |
<link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Header --> | |
<?php get_header(); ?> | |
<!-- Sidebar --> | |
<?php get_sidebar(); ?> | |
<!-- Footer --> | |
<?php get_footer(); ?> | |
<!-- Comments --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Theme Name: Your Theme Name | |
Theme URI: https://www.your-site.com/ | |
Description: The 2021 default theme for WordPress. | |
Author: Abdulrhman Ahmed | |
Author URI: https://www.aboelsaad.com/ | |
Version: 1.0 | |
Tags: blue, white, two-columns, translation-ready, rtl-language-support, custom-menu (optional) | |
License: GNU General Public License v2 or later | |
License URI: http://www.gnu.org/licenses/gpl-2.0.html |