Posts

Showing posts with the label Wordpress

Cara menambahkan Custom CSS ke Admin Wordpress

Image
Tambahkan kode dibawah ini ke namafilemu.php di plugin anda. add_action( 'admin_head' , 'my_custom_paging' ); function my_custom_paging() { echo '<style> .pagination{padding: 10px 0;font-size: 14px; border-top:2px solid #4D4D4D; } .pagination a {padding: 4px 5px; color: #333; margin: 0 1px; background:#fff; border:1px solid #ddd; text-decoration: none;} .pagination a:hover {background:#666; color: #fff; border:1px solid #333;} .pagination strong {font-weight:bold;padding: 4px 5px; margin: 0 1px; border:1px solid #888888; background:#98BF21; color: #fff;} .pagination-info{font-size:11px; padding: 6px 0 0 0;} #paging{ font-family: Tahoma; font-size: 8pt; } </style>'; } Hasilnya...

Create wp_query() Custom Shortcode with Parameters For Showing Post

Image
/**  *  wp_query shortcode Shortcode    [wp-post showpost="2" post_type="post" pagination="true" include_excerpt='true' ]  */ function wp_query_shortcode($atts, $content = null)         {         extract(shortcode_atts(array(                 'showpost' => '-1',                 'post_type' => 'post',                 'pagination' => '',                 'include_excerpt' => ''         ) , $atts));         $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;         $args = array(            ...