Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
# IROTECH Consulting WordPress Theme - Setup Guide
## Installation Instructions
### Step 1: Create Theme Directory
```bash
cd wp-content/themes/
mkdir irotech-consulting
cd irotech-consulting
```
### Step 2: Create Required Files
Create the following file structure:
```
irotech-consulting/
├── style.css
├── functions.php
├── header.php
├── footer.php
├── index.php
├── page.php
├── single.php
├── archive.php
├── search.php
├── 404.php
├── js/
│ └── main.js
├── css/
│ └── login.css
├── images/
└── languages/
└── irotech.pot
```
### Step 3: Key Files Content
#### Required Files to Create:
**index.php** - Main template
```php
', '
' );
the_excerpt();
echo '';
}
}
?>
', '
' );
the_content();
echo '';
}
}
?>
', '
' );
echo '';
the_content();
echo '';
}
}
?>
', '
' );
the_excerpt();
echo '404