Last active
June 19, 2016 15:38
-
-
Save itshaadi/242ede6e9f373c539517b73545a97b52 to your computer and use it in GitHub Desktop.
imdbi function and shortcode
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 | |
// چاپ رقم مربوط به بودجه | |
echo imdbi('budget'); | |
// ساختن یک تگ تصویر و نمایش پوستر | |
$poster = imdbi('poster'); | |
$html = '<img src='.$poster.' alt='.the_title().'>'; | |
echo $html; | |
?> | |
Shortcode: [imdbi meta_name="budget"] | |
ساختن یک تگ تصویر و نمایش پوستر با استفاده از شورت کد | |
<img src="[imdbi meta_name=poster]" alt="عنوان شما" width="عرض" height="ارتفاع"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment