background preloader

Wordpress

Facebook Twitter

10 Best Free Minimal WordPress Themes. Sometimes a lot of color, textures, and design elements can make a web design jump off the screen, but there are times when a minimal style is more appropriate for the content and it’s audience. A clean and minimal design gets out of the way and lets the content do the talking, and it’s a great way to give your site an elegant and sophisticated feel. If your getting ready to launch a WordPress site and you’re thinking about going minimal, here are our picks for the 10 best free minimal WordPress themes. Modern Clix Manifest Work-a-holic The Seven Five Fifty Fifth Street Neutra Structure Satoshi Ulap f8 lite About the Author Henry Jones is a web developer, designer, and entrepreneur with over 14 years of experience.

Related Posts 202 shares MP6: The Shape Of Things To Come For The WordPress Dashboard? Let’s be honest, the WordPress dashboard is neither attractive to look at nor particularly conducive to efficient workflows. Read More 277 shares 17+ Resources for Churches Using WordPress. Insights. Insights brings a powerful new way to write your blog posts. It increases productivity and at the same time the appeal of your posts. With Insights you can very quickly (in couple of seconds) do the following: Search your blog for posts, edit them or insert links to them into the current postInsert Flickr ImagesInsert Youtube videosSearch and link to WikipediaSearch GoogleSearch NewsGoogle Blog SearchInsert a Google Map Insights allows you to do all this using dynamic AJAX interface which loads the relevant information to your post in just a few seconds.

Download Download: Insights Using Insights Insights increases the speed you access and present information on your site. Let's say I want to link snazzy archives to my exact plugin page. If I am not sure of the exact link to that page I would need around 1 minute to open a new window, search for this page, copy the link and paste it. Adding images What if I wrote a post about mountains and wanted to insert a generic picture of a mountain: 1. 2. HOW TO: Create a jQuery Carousel with WordPress Posts | Armeda. BubbleUp jQuery Plugin to Spice Up Your Menu. Hey friend, in the previous jQuery Learning tutorial, I wrote an article that helps you to create your own jQuery plugin with the fun zooming effect. This plugin has received a lot of attention for a while and there are some suggestion from you guys to help this plugin to be better. I collected some interesting recommendations and bug fixes from my readers to write it again and release it.

This plugin now is more flexible, easy to customize and working with all major web browsers with any size of images. Sounds cool? Enjoy it! What’s this plugin? BubbleUp is a jQuery plugin released from a jQuery tutorial Learning jQuery: Your First jQuery Plugin, “BubbleUP” which helps you to create your first jQuery plugin. Features: Your menu will be scaled in any size via the option.You decide to enable the tooltip or not.The tooltip would be customizable by font, size and color.The speed of the transition (in/out) can be controlled. Demonstration This is how this plugin is in action. Requirements. How To Create Tabs Using jQuery. Tabbed sidebar elements are in. Why bother making users scroll down the page, when they can simply click a tab to quickly access various parts of your site?

Another popular thing is jQuery, “The Write Less, Do More, JavaScript Library.” I’ve gotten a lot of emails asking how I created tabs with jQuery in the last couple of days — since I released the Visionary theme. It’s actually not all that hard (I’m not a JavaScript programmer), and I’m going to run you through a tutorial. This tutorial is primarily based off WordPress, but can easily be ported anywhere else. First, you’ll need four files. Pulling the jQuery into your blog: Open “header.php” and add these lines between the <head></head> tags: <script type="text/javascript" src="<? Now, you can close that file. Creating the sidebar: First, we need to open “sidebar.php” and input this code. <div class="tabbed"><! Now, our sidebar is set up.

The backbone, jQuery: Open, or create, the file “tabs.js” for this part of the tutorial. Wordpress Slider Plugin, SlideDeck WordPress Slideshow Plugin WP | SlideDeck. SimpleSli.de: A Super-Simple jQuery Slideshow Plugin. » Post to Wordpress XMLRPC with PHP. The ability to post to a wordpress blog from any server opens up many possibilities. We can do this with relative ease by using the wordpress XMLRPC API which is built in to every wordpress blog. The following PHP script has been tested with the latest stable version of wordpress (2.8.6) and should work from any webserver with PHP & cURL capability. You must enable the WordPress, Movable Type, MetaWeblog and Blogger XML-RPC publishing protocols under the reading section of wp-admin. This script is released under the GNU General Public License. $ title = 'This is the post title' ; $ body = 'this is the post content' ; $ rpcurl = ' ; $ username = 'myusername' ; $ password = 'mypassword' ; $ category = '' ; //default is uncategorized, enter the name of the category here e.g 'News' or 'Latest News, Development News' $ keywords = 'one,two,three' ; //keywords comma seperated. $ encoding = 'UTF-8' ; //utf8 recommended $ content = array ( 'title' => $ title ,

Automatic Post Creation with Wordpress, PHP, and XML-RPC - mysit. So, for those of you who read my last blog post, you might notice that I was having issues with a script I wrote to create a new post in Wordpress when it came time to upgrade the Wordpress code. The SQL internals were modified, and I was inserting directly in to the database (yes, I know, I broke a cardinal rule). I needed an alternative way to insert information in to the database that would be much more future-proof. I remembered about XML-RPC. It took me some time to find answers to questions I had about XML-RPC and the Wordpress’ API. MetaWeblog Movable Type Blogger Wordpress’ own methods Since there was little written documentation as to how to do this, I thought I’d share my findings.

One thing to note: In order for this to work, your version of Wordpress will have to have “Remote Publishing” enabled; depending on which protocol(s) you’ll be using, you’ll want to enable either “Atom Publishing Protocol” or “XML-RPC”, or both. Let’s get to some nitty-gritty. Unfortunately, no.