內容簡介
Smarty for WordPress 可將 Smarty 樣板引擎整合至 WordPress,讓使用者透過短代碼直接在文章或頁面中嵌入 Smarty 樣板檔案,適合需要從 Smarty 架構快速遷移至 WordPress 的開發者。
【主要功能】
• 內建完整 Smarty 樣板引擎發行版
• 透過短代碼嵌入 Smarty 樣板檔案
• 支援傳遞單一或多個變數至樣板
• 提供 PHP API 取得 Smarty 實例
• 後台設定頁面可調整快取、編譯等屬性
• 內建測試短代碼快速驗證安裝結果
外掛標籤
開發者團隊
原文外掛簡介
Do you have Smarty templates that you would like to use in your wordpress blog?
Do you want a fast track migration from Smarty to WordPress?
Smarty for WordPress is the first plugin which incorporates a complete distribution of the Smarty template engine as a WordPress plug-in. You embed your Smarty template file by using a WordPress short code with the Smarty template file name and any variable which you want to be passed to your Smarty template file.
There are many useful frameworks written in Smarty and NOT WordPress, like XCart, that can NOW be implemented into WordPress with minimal changes and ease?
Stop! Don’t throw away that Smarty Template file, Download Smarty for WordPress, install, activate and use that Smarty template file in WordPress TODAY!!!
The following publication, “Guide to Using Smarty for WordPress Plugin” available on
Amazon at (http://www.amazon.com/dp/B00K5XTPL2) or Barnes & Noble (http://www.barnesandnoble.com/w/guide-to-the-smarty-for-wordpress-plugin-patrick-ingle/1123770360?ean=2940158127281) shows how to implement this framework plugin
in your wordpress blog.
Usage
First you need to create your Smarty directories under the theme path that you will be
using, e.g.
themes/theme_name/templates
themes/theme_name/templates_c
themes/theme_name/cache
themes/theme_name/config
If you wish to turn off WordPress themes by changing the constant WP_USE_THEMES to false, you also need to
set the constant SMARTY_PATH in your wp-config file to the path containing your Smarty files. In addition, you
need to specify your Smarty Loader file. This file is your index.php replacement for the Smarty templates and
obtain a copy of the smarty instance, make any necessary assignments and load your initial templates. The difference
between this implementation and smarty-only, is you have the full wordpress codex at your dispoable from
your Smarty routines.
You may use Smarty for WordPress either in you PHP/Theme files or from your WordPress posts
and pages. To use the API, simple invoke the function that returns the page
information requested. There are three API’s for this purpose:
If you wish to use Smarty in your custom worpress php files, then
Invoke the smarty_get_instance() function to get an instance of the Smarty class
with the directories preset to your current theme.
The simply use the Smarty class members as you would normally use, e.g $mySmarty->assign(‘name’,’value’);
to assign a template variable with a value.
You can also invoke the API’s from your WordPress pages/posts through short codes.
Create a WordPress page and enter the following short code:
[smarty-display tpl=home.tpl]
where home.tpl is your smarty template located in the templates path
If you want to pass a single variable with the template, use
[smarty-display tpl=home.tpl name=myVariable value="some value"]
where name is the variable name specified in you smarty template file, and
value is the value to be passed to your smarty template file that the above
variable represents
if you want to pass multiple variables to the smarty template, use
[smarty-load-multiple tpl=home.tpl name='my1,my2,my3' value='1,2,test']
where name holds a comma delimited list of smarty template variable names while
value holds a comma delimited list of associated values for the variable names.
The admin page under Settings permits setting the following Smarty attributes:
– SmartyBC, for enabling backward compatibility
– Auto literal
– Cache lifetime
– Cache modified check
– Config booleanized
– Config overwrite
– Config read hidden
– Debugging
– Force compile
– PHP handling
– Use sub-directories
Testing Smarty for WordPress can be accomplished by creating a post with the following shortcode,
[smarty-test]
Testing the Smarty Demo included in the Smarty distribution can be accomplished by creating a page or post with the following shortcode.
[smarty-demo]
Credits
We make honorable mention to anyone who helps make Smarty for WordPress a better plugin!
Contact
DO NOT ASK FOR SUPPORT FROM www.smarty.net!
Support is provided at https://github.com/presspage2018/smarty-for-wordpress/issues. You will require a free account on github.com
Please contact [email protected] or visit the above forum with questions, comments, or requests.
