Posts Tagged ‘article’

Content management system

A Content Management System (CMS) is a collection of procedures used to manage work flow in a collaborative environment. These procedures can be manual or computer-based. The procedures are designed to:

* Allow for large number of people to contribute to and share stored data
* Control access to data, based on user roles. User roles are used to define each use as to what information they can view or edit
* Aid in easy storage and retrieval of data
* Reduce repetitive duplicate input
* Improve the ease of report writing
* Improve communication between users

In a CMS, data can be defined as almost anything – documents, movies, pictures, phone numbers, scientific data, etc. CMSs are frequently used for storing, controlling, revising, and publishing documentation. Content that is controlled is industry-specific. (Entertainment content differs from the design of a fighter jet). There are various terms for systems (related processes) that do this. Examples include: Web Content Management, Digital Asset Management, Digital Records Management, Electronic Content Management (and others). Synchronization of intermediate steps, and collation into a final product are common goals of each.
Contents
[hide]

* 1 Types of CMS
* 2 Enterprise content management systems
* 3 Web content management systems
* 4 See also
* 5 References

[edit] Types of CMS

There are six main categories of CMS, with their respective domains of use:

* Enterprise CMS (ECMS)
* Web CMS (WCMS)
* Document Management System (DMS)
* Mobile Content Management System
* Component content management system
* Media Content Management System

[edit] Enterprise content management systems
Main article: Enterprise content management

An Enterprise Content Management (ECM) system is concerned with content, documents, details, and records related to the organizational processes of an enterprise. The purpose is to manage the organization’s unstructured information content, with all its diversity of format and location.
[edit] Web content management systems
Main article: Web content management system

A ‘Web Content Management’ (WCM) system is a CMS designed to simplify the publication of Web content to Web sites, in particular, allowing content creators to submit content without requiring technical knowledge of HTML or the uploading of files.

Mastering Your WordPress Theme Hacks and Techniques

This is the first article in the four-part series, “Powerful guide to master Your WordPress”. Throughout this article, we’ll be focus on many WordPress Theme hacks, ideas, tips and useful tutorials you need to have ready in hand when developing WordPress websites.

We’ll keep this post updated during this month. As we’ll check your suggestions and feedback,
select the best, add them to this list and provide a direct link to the person who submitted
the suggestion.

So let’s get started and don’t forget to subscribe to our RSS-Feed to keep track on our next post in this series.

*
This is the Loop

1)The Loop is perhaps the most important thing one needs to understand when customizing WordPress theme. Any HTML or PHP code placed between where The Loop starts and where The Loop ends will be used for each post. When WordPress documentation states “This tag must be within The Loop”, such as for specific Template Tag or plugins, this is The Loop.



// the code inside the loop


o
Further Readings On The Loop

Wp9 in Mastering Your WordPress Theme Hacks and Techniques
1)Modifying Individual Posts In The Loop- Sometimes Clients request things like Google ads being displayed after post #2, the top post having a differently colored background, only displaying the title for a few posts. You can’t do any of this inside a single Loop, so here’s how to use multiple loops to display lists of posts differently.How to use multiple loops to display lists of posts differently.

2)Embed Google Ad in First WordPress Post- One of the more effective places to implement Google Adsense is after the first post, so you want to prevent your ad code from appearing after every single post, as WordPress would just loop and keep showing it. All you need to do is add this code inside the loop.


// Insert your Google AdSense code here

You can also publish the advertisement after the second post or the third etc. Just change:

“count == 1? to “count == 2?
*
Category Related Techniques

The first step in modifying what happens when someone visits a Category page is to figure out which of your theme’s files is going to be used to display the posts. This is known as the Template Hierarchy.

This diagram, tells us most of what we need to know about organization of WordPress themes.

Change the number of posts displayed in Category Page.

You will need to open index.php file and find the line below,

then add this line right below it:

Where number “4″ is the number of posts you want to be displayed on every category page.

Have a different template for specific Category

So, if you want to make the Category whose ID number is 7 look different from what it is currently (and different from other Category pages), just create a category-7.php template file (or whatever your category ID is) in your current theme folder and customize it as you please. WordPress automatically checks for this, and will use the file if it exists. Please notice how we added the “-” and after it the id number of the category.

Displaying single post pages differently in specific category

For example, if you have a category called “News” and a category called “Tutorials” and you want the Stylesheet of the “News” category to be style1.css, and the stylesheet of the “Tutorials” category to be style2.css. Lorelle provides a simple solution by following the directions below:

Open single.php file and delete all the content and add the following code

$post = $wp_query->post;
if ( in_category(‘9′) ) {
include(TEMPLATEPATH . ‘/single2.php’);
} else {
include(TEMPLATEPATH . ‘/single1.php’);
}
?>

In the most simple terms, the PHP code issues a query that says: Check the post. If the post is in category ID number 9, display single2.php. If not in category ID number 9, display single1.php.
o
Further Reading on Categories

1)What Every Blogger Needs to Know About Categories- You can help your users, improve your SEO, and gain absolute control over your content by implementing your own WordPress category solution!
*
Conditional Tags

Conditional Tags can be used in your Template files to change what content is displayed and how that content is displayed on a particular page depending on what conditions that page matches.

Styling different categories: If you want to use certain stylesheet for specific category, all you have to do is add the code below to the tag in your index.php file.

>Gallery >About >Submit

o
Further Reading on Navigation Menu

Wp5 in Mastering Your WordPress Theme Hacks and Techniques
1)Creating Two-Tiered Conditional Navigation in Wordpress- Here is a common navigational scheme, with parent pages on top and child pages (if they exist) on bottom.

2) Smarter Navigation Menu Mike Cherim has explained how to get a smarter navigation menu using Conditional tags by offering post titles, archive dates, and category names instead of generic terminology.

Our Partners

Related