-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathD3-profile.php
More file actions
25 lines (23 loc) · 768 Bytes
/
Copy pathD3-profile.php
File metadata and controls
25 lines (23 loc) · 768 Bytes
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
<?php
/*
Plugin Name: Profile Plugin
*/
function profile_shortcode($attrs) {
?>
<table class="bio-table">
<tbody>
<tr>
<th class="second-column"><img style="width: 280px; height: 255px;" src="<?php echo $attrs['image']?>" />
<p class="caption"><b>
<?php echo $attrs['name'] ?> </b><br/>
<i><?php echo $attrs['title']?></i>
<?php echo $attrs['phone']?>
<?php echo $attrs['email']?>
</th>
<th class="bio-align-left"><?php echo $attrs['bio']?></th>
</tr>
</tbody>
</table>
<?php
}
add_shortcode('profile', 'profile_shortcode');