add_shortcode( 'portfolio', 'call_shortcode_portfolio' );
function call_shortcode_portfolio( $atts, $content = '' ) {
$atts = shortcode_atts( array( 'id' => null ), $atts );
$query = new WP_Query( array( 'post_type' => 'your_custom_post_type', 'p' => intval( $atts['id'] ) ) );
}
html:
<div class="row column-5">
<div class="col-md-1"></div>
<div class="col-md-2"></div>
<div class="col-md-2"></div>
<div class="col-md-2"></div>
<div class="col-md-2"></div>
<div class="col-md-2"></div>
<div class="col-md-1"></div>
</div>
css:
.column-5 .col-md-1 {
width: 0%;
}
.column-5 .col-md-2 {
width: 20%;
}
<>
в коде?==
add_action('woocommerce_checkout_process', 'number_mask');
function number_mask() {
global $woocommerce;
if ( isset ($woocommerce->customer->get_country() == 'BY' )) {
isset($_POST['billing_phone']) && ! preg_match("/^(\+375)?[0-9 \-]{9,}/i", $_POST['billing_phone'])
wc_add_notice(__('Пожалуйста введите <strong>Номер телефона</strong> с кодом оператора.'), 'error');
}
if ( isset ($woocommerce->customer->get_country() == 'RU' )) {
isset($_POST['billing_phone']) && ! preg_match("/^(\+7)?[0-9 \-]{10,}/i", $_POST['billing_phone'])
wc_add_notice(__('Пожалуйста введите <strong>Номер телефона</strong> с кодом оператора.'), 'error');
}}
/^(7|\+7|8)?[0-9]{10}/
function my_shortcode_function() {
ob_start();
wp_nav_menu( array('menu' => 'Навигация по сайту' )); // Здесь название меню, созданное в разделе "Меню"
$output_string=ob_get_contents();
ob_end_clean();
return $output_string;
}
add_shortcode('myshortcode', 'my_shortcode_function');
[exec]wp_nav_menu( array('menu' => 'Навигация по сайту' ));[/exec]
<img src="<?=$arResult["IMAGES"][0]["BIG_IMG"]["src"]?>">
<img src="<?=$first["BIG_IMG"]["src"]?>">