How do I call a plugin function inside a PHP template for WP sites?
-
I am using a pagination plugin in my WP site. As pagination works, it must be laid inside an index.php file, else it will not show the output. But i wish to call the same function in a template file. I have the php code but when I call that function or add that php code in header or so, it does not work for obvious reasons. Now, I thought to copy the same function and place it elsewhere working dynamically where changes in the parent files, say in pagination function, will affect that in other files instantly. Scenario (Pagination in the body of the website) Pages- 1,2,3,4,5...10 Placing/calling the exact thing in another place working the way hte parent function is working. Hope it makes sense. Let me know if I can achieve this. Note: This is something like copy link function in MS Excel or in spreadsheet where a change in one cell dynamically change the other where that function exists.
-
Answer:
Just a simple suggestion that instead of making multiple copies of same function, why not create a Shortcode of that function and you can call that function using do_shortcode. Creating shortcode // [bartag foo="foo-value"] function bartag_func( $atts ) { extract( shortcode_atts( array( 'foo' => 'something', 'bar' => 'something else', ), $atts ) ); return "foo = {$foo}"; } add_shortcode( 'bartag', 'bartag_func' ); To call the shortcode echo do_shortcode('[bartag foo="foo-value"]'); To know about shortcode follow the link: http://codex.wordpress.org/Shortcode_API
Rahul Balakrishna at Quora Visit the source
Related Q & A:
- How do I calculate a xyz-position of a GPS-position relative to an other GPS-position?Best solution by Geographic Information Systems
- How do I check a type is of a specific template?Best solution by Stack Overflow
- How can I make a dynamic web page in PHP?Best solution by Yahoo! Answers
- How can I make a phone call to a cruise ship?Best solution by traveltips.usatoday.com
- How do I call a cell phone in Australia?Best solution by wiki.answers.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.