PluginProbe
PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin / 2.4.0
PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin v2.4.0
trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.1 All 71 releases
pdf-print / includes / deprecated.php

deprecated.php in PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin 2.4.0, at includes/deprecated.php

31 lines 645 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Includes deprecated functions
4 */
5
6 if ( ! defined( 'ABSPATH' ) ) {
7 exit;
8 }
9
10 /**
11 * Output buttons of page for BWS Portfolio plugin
12 *
13 * @deprecated since 1.8.4
14 */
15 if ( ! function_exists( 'pdfprnt_show_buttons_for_bws_portfolio' ) ) {
16 function pdfprnt_show_buttons_for_bws_portfolio() {
17 return pdfprnt_show_buttons_for_custom_post_type();
18 }
19 }
20
21 /**
22 * Output buttons of post for BWS Portfolio plugin
23 *
24 * @deprecated since 1.8.4
25 */
26 if ( ! function_exists( 'pdfprnt_show_buttons_for_bws_portfolio_post' ) ) {
27 function pdfprnt_show_buttons_for_bws_portfolio_post() {
28 return pdfprnt_show_buttons_for_custom_post_type();
29 }
30 }
31