October 22nd, 2008Pro Developer’s logos overture
My friend Marjan Vrhovac, graphic designer created logos for Pro Developer web site. They look clean and professional, just as i wish. I like it!
Read the rest of this entry »
Popularity: 19% [?]
My friend Marjan Vrhovac, graphic designer created logos for Pro Developer web site. They look clean and professional, just as i wish. I like it!
Read the rest of this entry »
Popularity: 19% [?]
Boban KariĊĦik developed nice jQuery slide show images script. This jQuery slide show, rotate images, and showing out transparent div with image description.
I used this jQuery Script, to develop WordPress plugin which can be customized in admin area. This plugin will rotate latest posts from blog, presented with selected image, post headline, and optional post excerpt. One post can have one J Post Slider, image for this animation.
You can set up:
Popularity: 100% [?]
If your development team have more then one person, you will need some collaboration tool to improve team coherence. I love this kind of tools, they help me to improve progress, work and cooperation in team. There is a lot of great products, but this time i want to focus only at the bugs tracking. The 16bugs is nice web tool for tracking bugs on your projects.
After registration, you can create you company account, and include your team into this company, by inviting people to register on 16bugs. You can create projects, and give permissions to people to view or submit bugs.
Every bug can be assigned to some team member, with status and priority. Status can be: “Verified”, “Solving”, “Testing”, “Testing Passed”, “Duplicate”, “Solved” or “Discarded”. You can sort bugs by category or software version. Read the rest of this entry »
Popularity: 6% [?]
When you write your own WordPress plugin you might need to add new rewrite rules to WordPress. Some people add Rewrite rules direct into htaccess file, but when you open it you can see that WP don’t store rules into this file. All WordPress rewrite rules are stored into the database.
Default WordPress htaccess file
<ifmodule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</ifmodule>For manipulation with rewrite you can use WP_Rewrite class. It’s functions all listed at the WP Codes, but i will show you how to use most important ones.
rewrite_rules() function
1 2 3 4 | function getRewriteRules() { global $wp_rewrite; // Global WP_Rewrite class object return=$wp_rewrite->rewrite_rules(); } |
This function “getRewriteRules”, will return array with listed rewrite rules. Array will be something like …
Array ( // .... [author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?author_name=$1&feed=$2 [author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?author_name=$1&feed=$2 [author/([^/]+)/page/?([0-9]{1,})/?$] => index.php?author_name=$1&paged=$2 [author/([^/]+)/?$] => index.php?author_name=$1 // ... )
Popularity: 35% [?]
Welcome to Pro Developer! I am going to share all my knowledge and experience with you. Also if you have something you want to share with the world, we can publish it here.
You will learn from me and i will learn from you. I am sure that together we can create beautiful development web site with essential resources.
We are going to talk about PHP, AJAX, JavaScript, C#, .NET, Database modeling, Designing and Developing Applications, useful project management tools and who knows what. We will talk about OOP and Programming generally.
I developed a lot of WordPress plugins, so we can talk about WordPress development and customization. WP is powerful CMS, as you can see I am using it to run this web site. I don’t want to talk about me i want to talk about development.
This was enough for start – take care developers!
Popularity: 6% [?]