One thing I love about Wordpress is the great flexibility it offers in terms of designing custom themes and for this all the credit goes to Wordpress En ting jeg liker med Wordpress er den store fleksibiliteten det gir i forhold til å utforme egendefinerte temaer, og for all æren går til Wordpress Template Tags Mal Tags . .
Recently I ran into a problem where I wanted to monetize the posts in my Gadgets category with TTZmedia ads while keeping the normal Google Adsense ads on all other posts. Nylig Jeg løp inn i et problem der jeg ønsket å tjene penger på innleggene i mitt Gadgets kategorien TTZmedia annonser samtidig som den vanlige Google Adsense-annonser på alle andre poster. This is when I found the Dette er da jeg fant in_category in_category template function which lets you display category specific content in Wordpress. mal funksjon som lar deg vise kategorien konkrete innholdet i Wordpress.

The function is simple and very easy to use. Funksjonen er enkel og veldig lett å bruke. Just use it in the Loop on any template file and it should work file. Bare bruke den i Loop på noen mal arkiv og den burde arbeide arkiv.
<?php if ( in_category('category_id') ): ?>
// Some category specific PHP/HTML here
<?php endif; ?>
More detailed info and examples can be found on the link below: Mer detaljert informasjon og eksempler finnes på linken nedenfor:
This can be helpful to monetize posts from certain categories with specific ads and can also be used to display information about a particular category. Dette kan være nyttig å tjene penger innlegg fra enkelte kategorier med spesifikke annonser, og kan også brukes til å vise informasjon om en bestemt kategori.
A live implementation of this template function can be seen here on Sizlopedia. En levende gjennomføringen av denne malen funksjonen kan sees her på Sizlopedia. If you visit any post that belongs to the Hvis du besøker et innlegg som tilhører Gadgets Gadgets category you will see targeted product ads while in other cases you will see the normal Google Adsense ads. kategorien du vil se produktet målrettede annonser, mens i andre tilfeller vil du se vanlige Google Adsense annonser.
















