Implement Ad Revenue Sharing in Blogger (Supports Google AdSense And Any Code) Izvajati Ad Revenue Sharing v Bloggerju (podpira Google AdSense And Vse zakonika)

Many webmasters have been using WordPress web publishing platform to implement ad revenue sharing among authors or among members of editorial team. Veliko webmasters so bili z uporabo WordPress spletno objavljanje platformo za izvajanje ad delitve prihodkov med avtorji oziroma med člani uredništva. As WordPress is using PHP, uses theme and allows plugins, ad revenue sharing feature is easy to implement by manually programming the advertising ad codes rotation or simply use one of the many ad revenue sharing plug-ins for WordPress available to display different ads on posts or articles by different authors. Ker WordPress uporablja PHP, uporablja teme in plugins omogoča, oglas delitve prihodkov značilnost je preprosta za izvajanje, ki jih ročno načrtovanje oglaševalskih oglas kode rotacijo ali pa preprosto uporabite eno od mnogih ad delitve prihodkov plug-ins za WordPress na voljo za prikazovanje oglasov na različnih delovnih mestih ali izdelke, ki jih različni avtorji.

In Blogger blog publishing system, things get complicated. V Blogger blog objava sistem, dobil stvari zapletene. Blogger does not have the flexibility of a full programming language, nor supporting third-party plugins. Blogger nima prilagodljivost celotnega programskega jezika, niti ne podpirajo tretje osebe čep. As a result, function to share advertising revenue by rotating or changing ad code by posts' authors is hardly to design and implement, but not impossible. Kot rezultat, funkcijo za delitev prihodkov iz oglaševanja, ki ga vrtijo ali spreminjanje ad code avtorji delovnih mest, "je težko oblikovati in izvajati, vendar ne nemogoče.

Blogger template system is quite flexible, and does allow editing of the template in HTML format with broad support for various post elements tags, fonts and colors tags, and widget template tags. Blogger template sistem je zelo prilagodljiv, in ne omogoča urejanje predloge v formatu HTML s široko podporo za različne elemente post oznake, pisave in barv oznake, in widget template tags. By using these tags, a workaround to automatically rotate and display or show ads that links to post's author for ad revenue sharing can be added to Blogger (BlogSpot.com) hosted blog, including those blog powered by Blogger on custom domain and external server. Z uporabo teh oznak, workaround za samodejno vrtenje in prikaz ali prikazovanje oglasov, ki se lahko povezave do post avtorju za ad delitve prihodkov doda Blogger (BlogSpot.com) gostili blog, vključno s tistimi, ki jih poganja Blogger blog na domeno po meri in zunanji strežnik.

  1. Login to Blogger Dashboard. Prijava v Blogger Dashboard.
  2. Click on the Layout tab of the blog to implement ad revenue sharing hack. Kliknite na kartici Postavitev v blog za izvajanje ad delitve prihodkov kramp.
  3. Click on Edit HTML . Kliknite na Edit HTML.
  4. Tick and select the check box for Expand Widget Templates . Označite in izberite potrditveno polje za Expand Widget Templates.
  5. Depending on where on the web page that the ad space with author-linked ad codes rotation wants to be displayed, go to the appropriate line of code in the HTML editor. Glede na to, kje na spletni strani, oglasni prostor z avtorskimi povezane ad kod rotacije želi, da se prikaže, pojdite na ustrezno vrstico kode v urejevalniku HTML. For example, to implement an ad on the before the post content but after the post title, search for the following line of code in the template, and add the ad revenue sharing hack code as shown in next step above it: Na primer, za izvajanje oglasov na delovno mesto pred vsebino, vendar po pošti naslov, iskanje za naslednje vrstice kode v predlogo, in dodate oglas delitev dohodkov kramp kodo, kot je prikazano v naslednji korak nad njo:

    <data:post.body/>

    A more easier way to identify where to implement the code would be simply replacing the ad codes that are currently existed in the template. Več lahek način za ugotavljanje, kje za izvajanje kode bi se le nadomestitev oglas kode, ki trenutno obstajajo v predlogo.

  6. Insert the following HTML code, which make uses of Blogger conditional tags to implement ad revenue sharing on individual pages. Vstavite naslednjo HTML kodo, ki omogočajo uporabo Blogger pogojne oznak za izvedbo ad delitve prihodkov na posamezne strani.
     <b:if cond='data:blog.pageType == &quot;item&quot;'> <b:if cond='data:blog.pageType == "item"'> 
     <b:if cond='data:post.author == &quot;MyDigitalLife&quot;'> <b:if cond='data:post.author == "MyDigitalLife"'> 
     Insert Ad Code for MyDigitalLife here (first author) Ad Vstavite kodo za MyDigitalLife tukaj (prvi avtor) 
     </b:if> </ b: if> 
    
     <b:if cond='data:post.author == &quot;MyDigitalife2&quot;'> <b:if cond='data:post.author == "MyDigitalife2"'> 
     Insert Ad Code for MyDigitalLife2 here (second author) Ad Vstavite kodo za MyDigitalLife2 tukaj (drugi avtor) 
     </b:if> </ b: if> 
     </b:if> </ b: if> 
    

    Repeat the above section for single author for as many authors as there is. Ponovite zgoraj oddelek za enotno avtorja za toliko avtorjev, kot je.

    Remember to replace MyDigitalLife and MyDigitalLife2 (and anyone else) with actual Display Name of the authors. Ne pozabite, da namesto MyDigitalLife in MyDigitalLife2 (in kdorkoli drug), z dejanskimi Ime Prikaz avtorjev. And insert the actual ad code from, for example, Google AdSense, AdBrite, Tribal Fusion, ValueClick Media and etc. In dejansko vstavite kodo oglasa, na primer Google AdSense, AdBrite, Tribal Fusion, Media in ValueClick itd

    The first line of the code above restricts ad revenue sharing to be shown on individual post page only, but not only index page, category, tag, data, author or other categorized pages. Prva vrstica kode zgoraj omejuje ad delitve prihodkov morajo biti navedeni na posamezni strani le post, vendar ne samo index stran, kategorije, tag, podatki, avtorja ali drugih categorized strani.

  7. Click on Save Template when done. Kliknite na Shrani predlogo čas velja.
  8. Verify that correct ads are shown by viewing HTML source code of the web pages when visiting posts created by various authors or bloggers. Preverite, ali so pravilne oglasi prikazani na podlagi pogleda HTML izvorno kodo spletne strani, ko obiščejo delovnih mest, ki jih različni avtorji ali bloggers.

IMPORTANT : The page is machine translated and provided "as is" without warranty. POMEMBNO: stran je stroj prevod in če "kot je" brez garancije. Machine translation may be difficult to understand. Strojno prevajanje je lahko težko razumeti. Please refer to Prosimo, da original English article original angleški člen whenever possible. kadar je to mogoče.


3 Responses to “Implement Ad Revenue Sharing in Blogger (Supports Google AdSense And Any Code)” 3 odgovor v "Izvajati Ad Revenue Sharing v Bloggerju (podpira Google AdSense In vse zakonika)"

  1. Dave@Olive Articles Dave @ Olive členov
    October 15th, 2009 16:04 15. oktober 2009 16:04
    3 3

    Hi Živjo

    Could you please tel me where I can find a plugin for wordpress that will allow me to offer a share of adsense revenue for each contributors posts? Ali mi lahko prosim tel me kje bi lahko našel plugin za WordPress, ki bo omogočil, da mi ponudijo delež adsense prihodkov za vsako prispevkov delovna mesta? I really cannot find one that just shares the revenue for their individual content and I would like to implement it on my article site. Res ne more najti enega, da le delnice prihodkov za posamezne vsebine in bi rad njeno izvajanje na moj članek mestu.

    It would be very much appreciated. Bilo bi zelo cenjen.

  2. Anti Virus Anti Virus
    September 17th, 2009 12:32 17. september 2009 12:32
    2 2

    Thanks for the detailed info. Hvala za podrobne informacije. It is very helpful! To je zelo koristno!

  3. k k
    September 2nd, 2009 06:44 2. september 2009 06:44
    1 1

    Cool! Hladen!

Leave a Reply Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Lahko uporabite te oznake: <a href="" <abbr title=""> <acronym <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. Naročite se na komentarje funkcija je bila onemogočena. To receive notification of latest comments posted, subscribe to Če želite prejemati obvestila o najnovejših pripombe napoten, se naročite na My Digital Life Comments RSS feed Moje digitalno življenje razložiti RSS feed or ali register to receive Registrirajte se za prejemanje new comments in daily email digest. novi komentarji v dnevni email prebavljajo.
Custom Search

New Articles Novi členi

Incoming Search Terms for the Article Prihajajoč preiskava pogoj zakaj člen

Adsense per revenue sharing blogger Adsense na delitev dohodkov blogger - -- google adsense example code Google AdSense kodo, na primer - -- sharing blogger delitev blogger - -- ad revenue for blogs other than adsense prihodek od oglasov za bloge, ki niso adsense - -- website content licensing revenue share Spletna stran licenciranje vsebin delež prihodkov - -- ads easy Advertising activation code: Oglasi enostavno Oglaševanje activation code: - -- adsense ad sharing adsense ad delitve - -- Google AdSense Sample Code Google AdSense Vzorčna koda - -- share on email blogger code delež na email blogger code - -- revenue share tab remove Delež prihodkov kartico odstranite - --