Advertisement
info1atual

Código para Ad-inserter (Despertai Povos)

Jul 26th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.90 KB | None | 0 0
  1. <?php
  2.     $block3links = [];
  3.     $block3images = [];
  4.     $block3index = 0;
  5.  
  6.     $block3link0 = 'https://despertaipovos.com.br/site/2019/05/assim-caminha-a-humanidade/';
  7.     $block3link1 = 'http://despertaipovos.com.br/site/2019/04/a-celebracoes-de-pascoa-em-relacao-ao-judaismo/';
  8.     $block3link2 = 'http://despertaipovos.com.br/site/2019/02/crente-pentecostal-cuidado/';
  9.     $block3link3 = 'http://despertaipovos.com.br';
  10.    
  11.     $block3titulo0 = 'Despertamento e Evangelho';
  12.     $block3titulo1 = 'Mundo Gospel';
  13.     $block3titulo2 = 'Defesa da Fé';
  14.     $block3titulo3 = 'Despertai';
  15.  
  16.     $block3img0 = 'http://despertaipovos.com.br/site/wp-content/uploads/2017/12/cropped-logo-499x499.png';
  17.     $block3img1 = 'http://despertaipovos.com.br/site/wp-content/uploads/2017/12/cropped-logo-499x499.png';
  18.     $block3img2 = 'http://despertaipovos.com.br/site/wp-content/uploads/2017/12/cropped-logo-499x499.png';
  19.     $block3img3 = 'http://despertaipovos.com.br/site/wp-content/uploads/2017/12/cropped-logo-499x499.png';
  20.  
  21.     // Carlos Oliveira
  22.     $block3links[0] = "
  23.        <a style='display: block; text-decoration: none; margin-top: 7px; margin-bottom: 8px' href = '". $block3link0 ."' target='_blank'>
  24.            <img style='clear: both; float: left; margin-right: 6px; height: 61px; min-width: 61px' src='". $block3img0 ."' alt='Despertai, Despertamento, Defesa da fé, Mundo Gospel'>
  25.            <div>
  26.                <div style=''>
  27.                     <span style='font-size: 13px;'><small>Leia também::</small></span>
  28.                 </div>
  29.                 <div style=''>
  30.                    <span style='font-size: 18px; margin-top: 1px'>". $block3titulo0 ."</span>
  31.                </div>
  32.            </div>
  33.        </a>";
  34.     $block3links[1] = "
  35.        <a style='display: block; text-decoration: none; margin-top: 7px; margin-bottom: 8px' href = '". $block3link1 ."' target='_blank'>
  36.            <img style='clear: both; float: left; margin-right: 6px; height: 61px; min-width: 61px' src='". $block3img1 ."' alt='Despertai, Despertamento, Defesa da fé, Mundo Gospel'>
  37.            <div>
  38.                <div style=''>
  39.                     <span style='font-size: 13px;'><small>Leia também::</small></span>
  40.                 </div>
  41.                 <div style=''>
  42.                    <span style='font-size: 18px; margin-top: 1px'>". $block3titulo1 . "</span>
  43.                </div>
  44.            </div>
  45.        </a>";
  46.  
  47.     // Renato Marques
  48.     $block3links[2] = "
  49.        <a style='display: block; text-decoration: none; margin-top: 7px; margin-bottom: 8px' href = '". $block3link2 ."' target='_blank'>
  50.            <img style='clear: both; float: left; margin-right: 6px; height: 61px; min-width: 61px' src='". $block3img2 ."' alt='Despertai, Despertamento, Defesa da fé, Mundo Gospel'>
  51.            <div>
  52.                <div style=''>
  53.                     <span style='font-size: 13px;'><small>Leia também:</small></span>
  54.                 </div>
  55.                 <div style=''>
  56.                    <span style='font-size: 18px; margin-top: 1px'>". $block3titulo2 . "</span>
  57.                </div>
  58.            </div>
  59.        </a>";
  60.     $block3links[3] = "
  61.        <a style='display: block; text-decoration: none; margin-top: 7px; margin-bottom: 8px' href = '". $block3link3 ."' target='_blank'>
  62.            <img style='clear: both; float: left; margin-right: 6px; height: 61px; min-width: 61px' src='". $block3img3 ."' alt='Despertai, Despertamento, Defesa da fé, Mundo Gospel'>
  63.            <div>
  64.                <div style=''>
  65.                     <span style='font-size: 13px;'><small>Leia também::</small></span>
  66.                 </div>
  67.                 <div style=''>
  68.                    <span style='font-size: 18px; margin-top: 1px'>". $block3titulo3 . "</span>
  69.                </div>
  70.            </div>
  71.        </a>";
  72.  
  73.  
  74.     $block3index = mt_rand(0,count($block3links)-1);
  75.     // echo $block3index;
  76.    
  77. ?>
  78.  
  79. <div id="marketing-block3images" style="min-height: 93px">
  80.     <hr style='margin-bottom: 14px; margin-top: 14px'>
  81.     <?php echo $block3links[$block3index] ?>
  82. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement