| 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 |
|