WordPress is more and more stable and to customise the login page can be frustrating. When you install an worpress cms and begin to use it there is not a big issue that your website tells everybody:”Hey I am done …
Category Archives: WordPress (blog)
Write Sample of Coding into Page
The <code> tag allows you to write coding into your page without being executed and highlighting the code text. Sometime, when writing HTML code for WordPress needs to be used <sourcecode></sourcecode> or [sourcecode][/sourcecode] The code tags are supported in all …
Basic WordPress Hook-in
Displays the numeric ID of the current post: <?php the_ID(); ?> More details: http://codex.wordpress.org/Function_Reference/the_ID Displays or returns the title of the page: <?php wp_title(); ?> More details: http://codex.wordpress.org/Function_Reference/wp_title Returns the permalink to a post or page: <?php get_permalink(); ?> More details: http://codex.wordpress.org/Function_Reference/get_permalink Returns the category ID: <?php get_the_category( $id ) ?> …
Category ID – WordPress
WordPress is jumping as usual from one version to another and many rock functions become deprecated. As WordPress developer you may need current functions. Get current categoryID if you know the post ID. That’s simple and common and there is …
Zen vs WordPress – SEO
When to use WordPress and when to use Zen Cart A) WordPress is far one of the best CMS on the marked from many points of view including SEO. The single “problem” WordPress has is that Oppress is just missing …
WordPress, ZenCart, MadeSimple and Google index
What CMS (content management system) should be choose if the main target is to have the website up in Google Search as soon as possible and as high as possible. Just facts after two years of studying (analyse) evolution of …
WordPress – best lightbox
The beset way to have something properly is to keep it simple. When it is about light box we as developers, found that the best is fancy light box plugin. We did implement it in a couple of websites, the …
WordPress 3.11.x – problems
There are no custom fields supported into administrative area. You can still use any custom field like before but you must manipulate name and values directinto database There are no history for posts /ages supported but you can extract any …
SEO in WordPress
There are a couple plugins which allow to have or build automatily any page/post Title, Description(and keywords). A few words about WordPress from SEO perspective: – WordPress is a CMS build as a tool for editors and it is ready …
Pages and IDs – WordPress
1) Get Current page/post ID: get_the_ID() is handy for templates in conjunction with the get_page and get_post functions. Using $post, the ordpress post global object global $post; if($post->post_type == ‘page’){ echo ‘ This is a page. ID= ‘.$post->ID; } elseif($post->post_type …
Work with WordPress
1. Cleaning Check for the last version of WordPress From Control Panel go to File Manager in Root in www-Public Choose the website folder and clean it: Create a New Folder and Cut – Paste everything from website folder here …
Home page in WordPress
Very often you can get twice” Home” in WordPress. It is happening if you wish to display entry page as a specific page for example “Home” and not a post or the standard list of last posts. To avoid problems …
Multimedia Gallery – WordPress
PhotoSmash Gallery Manage images and YouTube movies Free and it is not linked in ay way with the publisher Includes image ranking system Does not include light box or similar (the big image is open in the same window Easy …
Move WordPress Website
This is : – short tutorial – How To Move a WordPress website – does not cover already installed and configured plug-ins – take care of your own changes in your source code added (plug-ins, templates or … the core …




(2 votes, average: 4.50 out of 5)