-
Notifications
You must be signed in to change notification settings - Fork 1
/
page-about.php
47 lines (43 loc) · 1.26 KB
/
page-about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/* Template Name: About page
*/
get_header();
?>
<div class="about">
<div class="midpage">
<?php
if(have_posts()) :
while(have_posts()) : the_post(); ?>
<div class="page_title">
<h1><?php $title= get_the_title();
$title= ucfirst(strtolower($title));
print $title;
?></h1>
<?php the_content(); ?>
</div>
<?php
endwhile;
endif;
$args = array( 'post_type' => 'About Us', 'posts_per_page' => 24 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
?>
<div class="about_person">
<?php the_post_thumbnail(); ?>
<h3><?php the_title(); ?></h3>
<?php the_content(); ?>
<div class="social-media">
<div><img src="<?php bloginfo('template_directory'); ?>/Images/facebook.png" alt=""></div>
<div><img src="<?php bloginfo('template_directory'); ?>/Images/google+.png" alt=""></div>
<div><img src="<?php bloginfo('template_directory'); ?>/Images/twitter.png" alt=""></div>
<div><img src="<?php bloginfo('template_directory'); ?>/Images/linkedin.png" alt=""></div>
</div>
</div>
<?php
endwhile;
?>
</div>
</div>
<?php
get_footer();
?>