Posted by Marcus Antonius - November 10, 2010. in android , wordpress WordPress recently announced a version of the administrative system of blogs for the Android operating system: WordPress for Android.

Version 1.0, which can be found in the Android Market , allows the administrator to:
- Configure and manage multiple blogs;
- Moderate and respond to feedback;
- Create and edit posts, including adding categories, tags and photos ;
- Create and edit pages;
- Be notified in the Android notification bar about new comments.
Read more ...
Tags: android , cms , mobile , wordpress
Posted by Marcus Antonius - November 10, 2010. in mobile The marcusantonius.info previously already had a mobile version via the plugin WP Mobile View . But I found a plugin that I found most interesting and far more flexible, is the Mobile Press .

Well the picture quality was not up to snuff (it was taken from my old nokia 5310
) But the plugin worked perfectly. Once you access my site any mobile device, it automatically detects and renders a lighter version of the layout. The mobile site also has a link to the version of "full" of the site.
So who owns any mobile device to enter in my site for him and talk to me about how he behaved.
Tags: mobile , mobile site , wordpress
Posted by Marcus Antonius - May 18, 2010. in wordpress The WordPress is, if not the greatest, one of the largest systems of blogs / CMS in the world. The perfect combination of great and active community system worked, and that the WP does not deliver by default, someone creates a plugin or hack to supply. With each major release, Automattic adds more features to the system, and this constant evolution originates from several fronts, who wins is the users. Already in Beta 2 , WordPress 3.0, the next version of the system, due out soon. This is one of the biggest launches in its history, as will bring some significant changes in the project as a whole. Let's see some of them?
New theme: Twenty Ten
After five years with good old Kubrick, WordPress's default theme will change. Developed by Automattic in order to take advantage of all features that WP has to offer, besides respecting web standards and have been done on good practice, the Twenty Ten promises. He will also bring some new built-in WordPress, like support for styles in screen editing posts.
Read more ...
Tags: cms , wordpress
Posted by Marcus Antonius - April 14, 2010. in wordpress Global Translator is a plugin for WordPress that is able to automatically translate your blog in 48 different languages:
Italian, Korean, Chinese (simplified and traditional), Portuguese, English, German, French, Spanish, Japanese, Arabic, Russian, Greek, Dutch, Bulgarian, Czech, Croatian, Danish, Finnish, Hindi, Polish, Romanian, Swedish, Norwegian , Catalan, Filipino, Hebrew, Indonesian, Latvian, Lithuanian, Serbian, Slovak, Slovenian, Ukrainian, Vietnamese, Albanian, Estonian, Galician, Maltese, Thai, Turkish, Hungarian, Belarus, Iceland, Ireland, Macedonia, Malaysia, Persian.
The number of available translations will depend on your blog language and the translation engine you chose to use.
The powerful features which Global Translator provides the most are:
- Four different translation engines: he has the ability to provide translations using the Google Translation Engine, Babel Fish, Promt, FreeTranslations.com
- Search Engine Optimized: it uses the permalinks by adding the language code at the beginning of all your URI. For example, the Portuguese version www.dominio.com / minha_categoria / meu_post, translated into English, will be automatically turned into www.dominio.com / en / minha_categoria / meu_post
- Fast Caching System: new fast, smart, optimized, self-cleaning and built-in caching system. Drastically reduce the risk of temporary suspension of translation engines.
- T otalmente configurable layout: you can easily customize the appearance of the translation bar by choosing from a table, div or image map for the flags bar and selecting the number of translations to offer its visitors
- No modification database: Global Translator is not intrusive.
Source: www.n2h.it
Tags: translation , wordpress
Posted by Marcus Antonius - April 7, 2010. in wordpress If you are trying to show the posts for a particular category of WordPress and is not getting this code below will solve all problems.
A
2
3
4
5
6
7
8
| 'category_name=NOMEDACATEGORIA&showposts=7' ) ; ?> <Php query_posts ('category_name = & CategoryName showposts = 7');?>
( have_posts ( ) ) : the_post ( ) ; ?> <? Php while (have_posts ()): the_post ();>
<li>
; ?> "> <A href = "<? Php the_permalink ();>">
; ?> <? Php the_title ();>
</ A>
</ Li>
; ?> <? Php endwhile;?> |
The Secret is in passing parameters query_posts saying which category and how many posts you want to view, if you consult the codex will find other parameters that will help you make custom queries such as:
- Latest Posts
- Posts of a specific month
- Posts of an Author
- Posts with certain Custom Field
Etc. Thousands of combinations making the query according to what you want, this link allows you to find the other parameters.
Tags: wordpress