Presentation for WordPress Baltimore “WordPress Networking with Domain Mapping”
Domain Mapping, WordPress NetworkingDownloadable presentation as a PDF for the “WordPress Custom Post Types: What, When, Why?” presentation for the WordPress Baltimore Lighting round.
Custom Post TypeSo this maybe old to some, but its news to me… This morning while sending out an email regarding my most recent photo shoot I started thinking of different file sharing services and the first one that came to mind was Drop.io, which was very popular amongst my friends during my college days. A quick [...]
During the process of adding comments into the update portion of my task post_type from the Task Tracker Plugin. I discovered that wp_list_comments was not what I wanted. What I wanted was the function get_comments(). <pre>$comments = get_comments( array( ‘post_id’ => $post->ID, ‘number’ => 10, ‘status’ => ‘approve’ ) ); foreach($comments as $comment) : echo [...]
Custom Post TypeThis month at the Baltimore PHP meetup will be doing a code review. I always find code reviews fun, just wish more PHP developers where bold enough to submit their own code! I’m pleased to see that the code submitted is a dirt simple WordPress plugin called “Simple Maps Code“. The code exemplifies an object-oriented [...]
So I was digging around in my parent theme zm-base, which, I realized doing “to much”. On one side I’m using the theme a Parent theme for child themes, another for hooks that I have in my functions.php and I also have a few things stashed away in sub-folders, such as an object-oriented approach to [...]
Custom Post Type, Custom TaxonomySo after last nights WordPress DC meetup where Russell Heimlich presented on “Understanding Your Audience and a Showcase of WordPress” I decided to check around on the analytics for 5GP, although I already check my analytics way too much! I was pleased to see that there is a (somewhat) decent amount of visitors actually clicking [...]
Credit goes to Colin Harm you can buy it here.
Ok, so while working on 5GP I needed a list of terms for a given custom taxonomy to be used as navigation on the Gallery page. I’m still developing this page locally so I don’t have a link to share just yet, but figured I can share my code snippet. Note I’d recommend first is [...]
Custom TaxonomyTim Crider, a PHP guru and work acquittance of mind, recently shared a link with me from Slashdot, titled “Are You Too Good for Code Review”. After reading it two things came to mind: Why would anyone not approve of a code review. My Genocide branch. Point number one, “Why would anyone not approve of [...]
Git