This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $meta_value=get_post_meta($post->ID,'views',true); | |
| //get_post_meta( int $post_id, string $key = '', bool $single = false )) | |
| if(!empty($meta_value)){ | |
| echo $meta_value; | |
| } | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| replace your my-first-custom-element.php with code below. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="modal fade" id="custdetail" role="dialog"> | |
| <div class="modal-dialog"> | |
| <!-- Modal content--> | |
| <div class="modal-content"> | |
| <div class="modal-header"> | |
| <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button> | |
| <h4 class="modal-title" id="myModalLabel">More About Joe</h4> | |
| </div> | |
| <div class="modal-body"> |
OlderNewer