Advertisement
Guest User

Untitled

a guest
Jan 17th, 2021
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP7 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 4.1.0.1
  8. * @ Author : DeZender
  9. * @ Release on : 29.08.2020
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. if (!defined('ABSPATH')) {
  15. exit();
  16. }
  17.  
  18. get_header();
  19. echo ' ' . "\r\n" . '<div id="breadcrumbs">' . "\r\n" . ' <div class="containers container"> ' . "\r\n" . ' ';
  20. breadcrumbs();
  21. echo ' ' . "\r\n" . ' </div>' . "\r\n" . '</div>' . "\r\n";
  22.  
  23. if ($themeum_options['ad_top']) {
  24. echo ' <div class="container-fluid">' . "\r\n" . ' <div class="row">' . "\r\n" . ' <div class="con_Ad mb10">' . "\r\n" . ' ';
  25. _e($themeum_options['ad_top']);
  26. echo ' </div>' . "\r\n" . ' </div>' . "\r\n" . ' </div>' . "\r\n";
  27. }
  28.  
  29. $term = get_queried_object();
  30. echo '<div class="sec-title ">' . "\r\n" . ' <div class="sec-info">' . "\r\n" . ' <i class="icon-clapboard-play"></i>' . "\r\n" . ' <h1>';
  31. single_cat_title();
  32. echo '</h1>' . "\r\n" . ' <h2 class="des">';
  33. echo 'شاهد ';
  34. echo ' ';
  35. single_cat_title();
  36. echo '</h2>' . "\r\n" . ' </div>' . "\r\n" . '</div>' . "\r\n" . '<div class="sec-line m-h500">' . "\r\n" . ' <div class="containers container">' . "\r\n" . ' <div class="row">' . "\r\n" . ' ';
  37.  
  38. if (have_posts()) {
  39. echo ' ';
  40.  
  41. while (have_posts()) {
  42. the_post();
  43. echo ' ' . "\r\n" . ' <article class="post">' . "\r\n" . ' <div class="';
  44. echo getGrid();
  45. echo '">' . "\r\n" . ' ';
  46.  
  47. if (get_post_type() == 'movies') {
  48. echo ' ';
  49. require get_template_directory() . '/temp/blocks/movies.php';
  50. echo ' ';
  51. }
  52. else if (get_post_type() == 'series') {
  53. echo ' ';
  54. require get_template_directory() . '/temp/blocks/series.php';
  55. echo ' ';
  56. }
  57. else {
  58. echo ' ';
  59. require get_template_directory() . '/temp/blocks/episode.php';
  60. echo ' ';
  61. }
  62.  
  63. echo ' </div> ' . "\r\n" . ' </article> ' . "\r\n" . ' ';
  64. }
  65.  
  66. echo ' ' . "\r\n" . ' <div class="col-md-12">' . "\r\n" . ' <div class="navigation mt20">';
  67. echo wpex_pagination();
  68. echo '</div>' . "\r\n" . ' </div>' . "\r\n" . ' ';
  69. }
  70. else {
  71. echo ' <div class="col-md-12">' . "\r\n" . ' <div class="noResult alert alert-danger alert-dismissable">' . "\r\n" . ' <h4>';
  72. _e('غير متوفر اى بيانات', '3arbserv.com');
  73. echo '</h4>' . "\r\n" . ' </div>' . "\r\n" . ' </div>' . "\r\n" . ' ';
  74. }
  75.  
  76. echo ' ' . "\r\n" . ' ' . "\r\n" . ' ';
  77. ........................................................
  78. ................................
  79. .............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement