This file contains hidden or 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
We're a small web development studio based in Jakarta, we're looking to hire talented individual to work remotely as our WordPress Developer. | |
Requirements: | |
- WordPress is your passion & you're fun person to work with | |
- 2 years experience w/ PHP & MySQL & familiar w/ WordPress API | |
- jQuery is your friend | |
- Experience building web apps using CakePHP / CodeIgniter is a big plus but not mandatory | |
- Knows how to use git / svn is a plus | |
- Have 24 hours internet connection, a broadband connection is a plus | |
- Able and willing to work Monday to Friday (8am - 4pm). You must stay online during working hours |
This file contains hidden or 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 get_header(); ?> | |
<!-- START: LEFT COLUMN --> | |
<div id="leftcol" class="wide"> | |
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> | |
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | |
<h1 class="title"><?php the_title(); ?></h1> | |
This file contains hidden or 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 | |
$exclude_cat = stripslashes( get_option($shortname.'_exclude_cat_latest_news') ); | |
// Remove any space | |
$exclude_cat = str_replace(' ', '', $exclude_cat); | |
// Explode the string into array | |
$exclude_cat = explode(',', $exclude_cat); | |
$latest_news_total = stripslashes( get_option($shortname.'_latest_news_total') ); |
NewerOlder